[Guide 4.2+] Lollipop Running Process View In Settings.apk - Miscellaneous Android Development

How to Get Lollipop Running Process View In Settings
Hello XDA
It's Extracted From Lollifox Rom By FMD Team
Tested this on MT6577 & MT6589 device running 4.2 Jellybean. I think this guide will work on other's too.
REQUIREMENT:
- Brain.apk xD
- Common Sense.apk
- apktool (version 1.5.2)
- Notepad ++
- Settings.apk
Ok Let's begin.
Note: Import (framework-res.apk, and mediatek-res.apk first)
STEP 1
First decompile your Settings.apk.
STEP 2
Extract SettingsFiles folder from the zip file to your decompiled Settings (Merge It)
STEP 3
Open Styles.xml in /res/values
Add this at the bottom before </resources>
Code:
<style name="Settings.runapps.ListSeparator" parent="@android:style/Widget.Holo.Light.TextView.ListSeparator">
<item name="android:background">@null</item>
</style>
STEP 4
Open strings.xml in /res/values
Add this at the bottom before </resources>
Code:
<string name="used_ram">Used</string>
<string name="free_ram">Free</string>
<string name="ram_usage">App RAM usage</string>
STEP 5
Open colors.xml in /res/values
Add this at the bottom before </resources>
Code:
<color name="running_processes_free_ram">#ffcfd8dd</color>
<color name="running_processes_busy_ram">#ff009587</color>
STEP 6
- Compile
- Sign it
Special Thanks to :-
Code:
Klark Luis Peralta
FMD Devs For the Settings
Note !
Code:
- This is the running process view of Lollifox by FMD Devs.
- You need to be "very patient" and have a lot of time as this is a time consuming tutorial.
- I won't explain how to do things like pushing the apps, setting the permission, or how to get a value in public.xml and use that to change something in a certain smali. Why? Because its been tackled a lot of times on the previous guides is posted. - common sense is a must.
- I won't also explain how to push the signature, or what is a signature, what is signing or how to sign an app. Those are different topics, just check pinned post for their guides.
- Read everything.
HAPPY MODDING

SCREENSHOT
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}

Rohit Gupta [user=239049 said:
@123[/user];59926096]How to Get Lollipop Running Process View In Settings
Hello XDA
It's Extracted From Lollifox Rom By FMD Team
Tested this on MT6577 & MT6589 device running 4.2 Jellybean. I think this guide will work on other's too.
REQUIREMENT:
- Brain.apk xD
- Common Sense.apk
- apktool (version 1.5.2)
- Notepad ++
- Settings.apk
Ok Let's begin.
Note: Import (framework-res.apk, and mediatek-res.apk first)
STEP 1
First decompile your Settings.apk.
STEP 2
Extract SettingsFiles folder from the zip file to your decompiled Settings (Merge It)
STEP 3
Open Styles.xml in /res/values
Add this at the bottom before
Code:
@null
STEP 4
Open strings.xml in /res/values
Add this at the bottom before
Code:
Used
Free
App RAM usage
STEP 5
Open colors.xml in /res/values
Add this at the bottom before
Code:
#ffcfd8dd
#ff009587
STEP 6
- Compile
- Sign it
Special Thanks to :-
Code:
Klark Luis Peralta
FMD Devs For the Settings
Note !
Code:
- This is the running process view of Lollifox by FMD Devs.
- You need to be "very patient" and have a lot of time as this is a time consuming tutorial.
- I won't explain how to do things like pushing the apps, setting the permission, or how to get a value in public.xml and use that to change something in a certain smali. Why? Because its been tackled a lot of times on the previous guides is posted. - common sense is a must.
- I won't also explain how to push the signature, or what is a signature, what is signing or how to sign an app. Those are different topics, just check pinned post for their guides.
- Read everything.
Nice
Click to expand...
Click to collapse

eboybasit said:
Dont forget to mention credits sir,,,,, to actually whom this guide belongs to
---------- Post added at 06:55 AM ---------- Previous post was at 06:52 AM ----------
Nice
Click to expand...
Click to collapse
I had Given Credit's Then Why Are You asking This ?

Haha nothing man :v

Thanks for this guide man

Related

[MOD][GUIDE]-SliderBrightness CM7smali for GB[all Rom]

Hello after learning some smali from CM7.2 with clues from b16h22 and percy finally i can implement this MOD to our device and i think it can be implemented too for other GB device soo big thanks goes to:
CREDIT:
Autoradio78 for smali sources and dev of new experiences rom
b16h22 aka lee panda for some references
percy for his ported new experiences cm7.2 with this smali
ok lets goto Guide:
first of all need some requirment for this MOD
REQUIRTMENT:
*BRAIN
*patient
*know how to decompile Apk file
*notepad++
*apkmanager/apktool/vts are fine
*attached file======== here
1.decompile systemui.apk
2.estract attached file copy attached smali file to smali/com/lidroid/systemui/qickpanel/HERE
and slider_brighness.smali $1,$2 to com/android/systemui/statusbar/here
copy brightness_setting_view.smali,$1,automaticObserver.smali,brightnessObserver.smali to com/android/systemi/statusbar/quickpanel/here
3.copy brightness_seekbar.xml to drawable folder
copy background_bg.png to drawable-ldpi folder
copy quickpanel_brightness_icon.png to drawable-hdpi(in my ui case) u can place it on mdpi foldere or ldpi
copy qp_brightness.xml to layout folder
copy quickpanel_brightness_settings.xml to layout folder
4.open statusbar_expanded.xml with notepad++ add this line
Code:
<include layout="@layout/qp_brightness" />
u can place it under linear layout or relative layout
5.go to values folder find string.xml open with notepad++ add this lineabove resources
Code:
<string name="brightness_settings_title" />
<string name="brightness_settings_automatic" />
6.open ids.xml open with notepad++ add this line
Code:
<item type="id" name="title">false</item>
<item type="id" name="brightness">false</item>
<item type="id" name="automatic">false</item>
7.save all change then recompile your UI project
8.test it on your phone
9.enjoiy
ss:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
any problem aplying this mod please report here for sure i will help you
enjoy
regards evanlocked
Cool
sent from Xperia P using xda-app
percy215 said:
Cool
sent from Xperia P using xda-app
Click to expand...
Click to collapse
WOOOW new signature new device thats cool
Here my modded system ui
U can compare with it
Saya suka file 4shared http://www.4shared.com/android/UsQDAGuu/unsignedunsignedSystemUIjkl__5.html
Give due some credits if u wanna add for this mod
Coool
LoL....
Mod Looks Great :thumbup:
Simplicity :thumbup:
Much more simpler than the 1st slider thing ( no offence? )
Thread Closed.
~jasonxD
Reserved will try it bro.
Sent from my GT-S5360 using Tapatalk 2
1.decompile systemui.apk
2.estract attached file copy attached smali file to smali/com/lidroid/systemui/qickpanel/HERE
3.copy brightness_seekbar.xml to drawable folder
copy background_bg.png to drawable-ldpi folder
copy quickpanel_brightness_icon.png to drawable-hdpi(in my ui case) u can place it on mdpi foldere or ldpi
copy qp_brightness.xml to layout folder
copy quickpanel_brightness_settings.xml to layout folder
4.open statusbar_expanded.xml with notepad++ add this line
I am cannot find file attached ?
thank you! I have seen it
no file attachments. smali
evanlocked said:
WOOOW new signature new device thats cool
Click to expand...
Click to collapse
hehe
---------- Post added at 07:48 PM ---------- Previous post was at 07:47 PM ----------
nvky71 said:
1.decompile systemui.apk
2.estract attached file copy attached smali file to smali/com/lidroid/systemui/qickpanel/HERE
3.copy brightness_seekbar.xml to drawable folder
copy background_bg.png to drawable-ldpi folder
copy quickpanel_brightness_icon.png to drawable-hdpi(in my ui case) u can place it on mdpi foldere or ldpi
copy qp_brightness.xml to layout folder
copy quickpanel_brightness_settings.xml to layout folder
4.open statusbar_expanded.xml with notepad++ add this line
I am cannot find file attached ?
Click to expand...
Click to collapse
see requirement
below there its attached
Reserved
I will apply it today!
Soo cool slider! You are one of the best themers out there/)
Sent from Nemesis HD
awesome!! you got it bro! now i dont wanna install statusbargrepper.apk just to make it accurate when i slide the brightness
Sent from my Android System using Busybox Command.
My work
========================
- AndroBot SGY tweaks
- Nandroid md5 Fixer
- Ext4 to RFS Converter
- (CWM) kernel.tar Installer
- (CWM) Firmware Installer
Exellent guide.
Sent from my GT-S5360 using xda app-developers app
attached file attached now or can se media fire link heheheheh see post1
b16h22 said:
Exellent guide.
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
im just implement it from yours lee panda
bro there is no smali file in our zip file
Really cool!
d3cka said:
bro there is no smali file in our zip file
Click to expand...
Click to collapse
sorry my bad change it nao hehehehehe
lol take ur time bro no such a hurry
d3cka said:
lol take ur time bro no such a hurry
Click to expand...
Click to collapse
done attached now
evanlocked said:
done attached now
Click to expand...
Click to collapse
+1
SYTEMUI FC ON NEMESIS ONE CAN U MAKE A FLASHABLE ZIP FOR ALL ROMS
bY
SHANE

[TUTORIAL][MOD] Make 5 menu NavBar / SoftKey [Xperia L]

[TUTORIAL][MOD] Make 5 menu NavBar / SoftKey [Xperia L]
This tutorial for JB 4.1.2 4.2.2 4.3​
Hello
This is my 1st thread.So,sory if my english are bad..
I know some of you already knows this. So if you already known this, you can leave it. This is for new comers like me
You all know that the default navbar for XperiaL only 3 buttons, back-home-recents app... So we'll make 2 additional button, thats are lock & menu..
This extra button are very usefull, i think..
Oke Let's Start
Needed :
+ PC
+ Knowledge of compile-decompile APKs
+ Signing APKs
+ Root & Deodex
+ Notepad++
[1] You have to find 5 icon for our new 5 navbar..you can search on this forum, or you will made the icons by yourself,doesnt matter..the important is you gets HDPI icons for HDPI device, xHDPI for xHDPI device...
[2] Decompile your SystemUI.apk...go to res/drawable-hdpi (for hdpi device)...make sure your icons have same name with icons from this folder...copy your icon to this folder...
[3]Go to res/values folder and search ids.xml and open it with Notepad++..Then add this line at the end before </resources>
<item type="id" name="lock">false</item>
<item type="id" name="newmenu">false</item>
Click to expand...
Click to collapse
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Save it and close
[4]
Go to res/values/strings.xlm... Add this line
<string name="accessibility_lock">Lock</string>
Click to expand...
Click to collapse
Save it and close
[5]
Now go to res/layout folder and find navigation-bar.xlm open with Notepad++...
You can found this
Just replace with this
Scrip 1
Before saving, next to step 6
[6]
Find this
Replace with this
Scrip 2
Save it and close
7
Recompile and sign the APK..Push to your system
Congrats
You get navbar with 5 menus..
Note
You can chang the DIP on step 5 and 6 to customizing..
And you can change the order of the menus on step 5..just move the line like what you want..that line make order back-menu-home-lock-recent (form the left)..you can change to menu-back-home-recent-lock or what you want..just MOVE the line..
Source thread :
http://forum.xda-developers.com/showthread.php?t=2553416
Credit :
Rajeev
Screenshot
This is mine
kz_rider_0274 said:
[TUTORIAL][MOD] Make 5 menu NavBar / SoftKey [Xperia L]
This tutorial for JB 4.1.2 4.2.2 4.3​
Hello
This is my 1st thread.So,sory if my english are bad..
I know some of you already knows this. So if you already known this, you can leave it. This is for new comers like me
You all know that the default navbar for XperiaL only 3 buttons, back-home-recents app... So we'll make 2 additional button, thats are lock & menu..
This extra button are very usefull, i think..
Oke Let's Start
Needed :
+ PC
+ Knowledge of compile-decompile APKs
+ Signing APKs
+ Root & Deodex
+ Notepad++
[1] You have to find 5 icon for our new 5 navbar..you can search on this forum, or you will made the icons by yourself,doesnt matter..the important is you gets HDPI icons for HDPI device, xHDPI for xHDPI device...
[2] Decompile your SystemUI.apk...go to res/drawable-hdpi (for hdpi device)...make sure your icons have same name with icons from this folder...copy your icon to this folder...
[3]Go to res/values folder and search ids.xml and open it with Notepad++..Then add this line at the end before </resources>
Save it and close
[4]
Go to res/values/strings.xlm... Add this line
Save it and close
[5]
Now go to res/layout folder and find navigation-bar.xlm open with Notepad++...
You can found this
Just replace with this
Scrip 1
Before saving, next to step 6
[6]
Find this
Replace with this
Scrip 2
Save it and close
7
Recompile and sign the APK..Push to your system
Congrats
You get navbar with 5 menus..
Note
You can chang the DIP on step 5 and 6 to customizing..
And you can change the order of the menus on step 5..just move the line like what you want..that line make order back-menu-home-lock-recent (form the left)..you can change to menu-back-home-recent-lock or what you want..just MOVE the line..
Source thread :
http://forum.xda-developers.com/showthread.php?t=2553416
Credit :
Rajeev
Screenshot
This is mine
Click to expand...
Click to collapse
Thanx dude,nice tut
Sent from my C2105 using XDA Premium 4 mobile app
Burraku_Shinfoni said:
Thanx dude,nice tut
Sent from my C2105 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
you're welcome bro

How To Make Card Stack Recent Apps like Android Lollipop in JB 4.2.2

Items Required :-
1) SystemUI.apk
2) Apktool
3) Text Editor (Notepad ++)
Procedure:-
1) First of All decompile SystemUI.apk using apktool.
2) Now Goto res/layout folder.
3) Open status_bar_recent_item.xml
4) Now in its line no. 2 add this code android:layout_marginTop="-75.0dip" android:rotationX="-10.0"
5) Save it.
6) Also Open Status_bar_recent_panel.xml
7) In line no. 2 add android:rotationX="10.0"
8) Save it.
9) Recompile and push meta inf and androidmanifest.xml of your original apk to the modded one.
10) Push it and set permissions to rw--r-r
Dont cook up your phone.
Note:- If You faced any deformalities regarding thumbnail size change
Thumbnail_height and thumbnail_width to 250.0px
Tested in JB 4.2.2 MTK
Samsung JellyBean Users Can go Over HERE
Full Credit to Arta Bagger and UI DESIGNER PRO
Dont Forget To Hit Thanks Button
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Can you attach screenshots please?
---------- Post added at 02:01 PM ---------- Previous post was at 02:00 PM ----------
Thanks.
Screen shot in my comment sir you can click there to check ss
Awesome :good:
eboybasit said:
Items Required :-
1) SystemUI.apk
2) Apktool
3) Text Editor (Notepad ++)
Procedure:-
1) First of All decompile SystemUI.apk using apktool.
2) Now Goto res/layout folder.
3) Open status_bar_recent_panel_item.xml
4) Now in its line no. 2 add this code android:rotationX="-10.0"
5) Save it.
6) Also Open Status_bar_recent_panel.xml
7) In line no. 2 add android:rotationX="10.0"
8) Save it.
9) Recompile and push meta inf and androidmanifest.xml of your original apk to the modded one.
10) Push it and set permissions to rw--r-r
Dont cook up your phone.
Note:- If You faced any deformalities regarding thumbnail size change
Thumbnail_height and thumbnail_width to 250px
Tested in Cherry Mobile JB 4.2.2 MTK
Full Credit to Rommel Vallisor
Dont Forget To Hit Thanks Button
Click to expand...
Click to collapse
There is no "status_bar_recent_panel_item.xml" only "status_bar_recent_panel.xml" and "status_bar_recent_item.xml" in the res/layout folder
Sir you can try finding it in layout-port folder
Try finding in layout-port folder
Thanks sir @syaeful
eboybasit said:
Items Required :-
1) SystemUI.apk
2) Apktool
3) Text Editor (Notepad ++)
Procedure:-
1) First of All decompile SystemUI.apk using apktool.
2) Now Goto res/layout folder.
3) Open status_bar_recent_panel_item.xml
4) Now in its line no. 2 add this code android:rotationX="-10.0"
5) Save it.
6) Also Open Status_bar_recent_panel.xml
7) In line no. 2 add android:rotationX="10.0"
8) Save it.
9) Recompile and push meta inf and androidmanifest.xml of your original apk to the modded one.
10) Push it and set permissions to rw--r-r
Dont cook up your phone.
Note:- If You faced any deformalities regarding thumbnail size change
Thumbnail_height and thumbnail_width to 250px
Tested in Cherry Mobile JB 4.2.2 MTK
Full Credit to Rommel Vallisor
Dont Forget To Hit Thanks Button
Click to expand...
Click to collapse
Mine turned out like this Jb 4.2.2
[img=http://s13.postimg.org/bq1owupz7/Screenshot_2015_03_07_21_01_19.jpg]
Papdya said:
Mine turned out like this Jb 4.2.2
[img=http://s13.postimg.org/bq1owupz7/Screenshot_2015_03_07_21_01_19.jpg]
Click to expand...
Click to collapse
Ahh..... wait i'll give you xmls for compare sir your recent app style is different,,,, are you a samsung user...?
eboybasit said:
Ahh..... wait i'll give you xmls for compare sir your recent app style is different,,,, are you a samsung user...?
Click to expand...
Click to collapse
No it micromax and its a rom which i have ported and themed according to my liking.. Dont call me sir plz.. i am just 16
Papdya said:
Mine turned out like this Jb 4.2.2
[img=http://s13.postimg.org/bq1owupz7/Screenshot_2015_03_07_21_01_19.jpg]
Click to expand...
Click to collapse
Compare your xml with this Hope this will help You
K sure i will check n tell.
Okay :thumbup:
http://d-h.st/KA06
http://d-h.st/nxuj
Here are my files a few lines are different ..do i make it same as urs or let it stay?
Papdya said:
http://d-h.st/KA06
http://d-h.st/nxuj
Here are my files a few lines are different ..do i make it same as urs or let it stay?
Click to expand...
Click to collapse
Dont change height or any drawable or add any extra drawable.....only compare codes placement and layout margins ,paddings and relative layouts
Papdya said:
http://d-h.st/KA06
http://d-h.st/nxuj
Here are my files a few lines are different ..do i make it same as urs or let it stay?
Click to expand...
Click to collapse
Dont add any drawables,,,,,only compare the placement of codes in linear layouts , relative layouts, paddings and margins
eboybasit said:
Dont add any drawables,,,,,only compare the placement of codes in linear layouts , relative layouts, paddings and margins
Click to expand...
Click to collapse
I will try it tmrw and tell if it works. Thanks fr the help btw. :thumbup:
Papdya said:
I will try it tmrw and tell if it works. Thanks fr the help btw. :thumbup:
Click to expand...
Click to collapse
Your Welcome

(Guide) How to add fab in your app with animated Submenu

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Hi Friends .Today I am going to share my new guide. How to add fab in your app with animated Submenu. Well great news is it support in GingerBread too. Thats why I named it Droidbuster Fabulous fab . . Here I created fab circle view by using xml. well i saw many developer create their fab circle imageView using Photoshop or gimps etc. but it take time and more skills. So i thought to create Fab circle image view using xml drawable. And here i will also help you to create Fab images in xmls .​
So let Start.
Decompile that application in which you want to add fab Button.
Now download This droidbuster_fabulous_fab_res.zip
Now we need to extract above droidbuster_fabulous_fab_res.zip .then copy my resources in your app res folder.
Now we need to place this Fab button in our layout.
then put this code in it.
Code:
<RelativeLayout android:id="@+id/fabcontent" android:layout_width="400.0dip" android:layout_height="200.0dip" android:layout_marginBottom="34.0dip" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true">
<com.droidbusterfabolous.fab1 android:id="@+id/fab1" android:background="@drawable/fab_shape" android:layout_width="72.0dip" android:layout_height="72.0dip" android:layout_marginTop="22.0dip" android:layout_marginRight="24.0dip" android:src="@drawable/ic_call" android:layout_alignParentTop="true" android:layout_alignParentRight="true" />
<com.droidbusterfabolous.fabmain android:id="@+id/fabu" android:background="@drawable/fab_shape" android:layout_width="92.0dip" android:layout_height="92.0dip" android:src="@drawable/fab_ic_add" android:layout_alignParentRight="true" android:layout_alignParentBottom="true" />
<com.droidbusterfabolous.fab3 android:id="@+id/FAB3" android:background="@drawable/fab_shape" android:layout_width="72.0dip" android:layout_height="72.0dip" android:layout_marginRight="15.0dip" android:src="@drawable/ic_supervisor" android:layout_toLeftOf="@+id/fab1" android:layout_alignParentBottom="true" />
<com.droidbusterfabolous.fab2 android:id="@+id/fab2" android:background="@drawable/fab_shape" android:layout_width="72.0dip" android:layout_height="72.0dip" android:src="@drawable/ic_chat" android:layout_toLeftOf="@+id/fabu" android:layout_centerVertical="true" />
</RelativeLayout>
Now download this Smali source of Fabs_animation_smali.zip .
After download Extract the Fabs_animation_smali.zip .- Now, Copy the "droidbusterfabolous" folder to \smali\com\(here)
Well you have done your first part .Now Recompile your Application :fingers-crossed:
Now Decompile your application .Now this is our smalli editing part.
Remember search for fab1.smali fab2.smali fab3.smali .
open fab1.smali . Search for 0x7f040002 .Now open your public.xml find anim_rotate_show_fab . Now replace it public id with 0x7f040002 .
Now again search for 0x7f040001 . Now again open your public.xml find anim_rotate_hide_fab . Now replace it public id with 0x7f040001 .
Do same step with fab2.smali .Search for 0x7f040002 .Now open your public.xml find anim_rotate_show_fab . Now replace it public id with 0x7f040002 .
Now again search for 0x7f040001 . Now again open your public.xml find anim_rotate_hide_fab . Now replace it public id with 0x7f040001 .
Do same step with fab3.smali .Search for 0x7f040002 .Now open your public.xml find anim_rotate_show_fab . Now replace it public id with 0x7f040002 .
Now again search for 0x7f040001 . Now again open your public.xml find anim_rotate_hide_fab . Now replace it public id with 0x7f040001 .
Now search open this smalis .Now open fab1$1.smali , fab2$1.smali, fab3$1.smali with Notepad++ .
In this smali you have to Search for <!-- android:targetPackage --> Now change this your desired target package name.dont know what is this? targetPackage Name? I will explain in another post .haha!
and Now Search for <!-- android:targetClass --> Change this code to your desired target Class Name.
For example here is my my Targetpackage Name and targetClass name
Code:
android:targetPackage="com.android.mms"
android:targetClass="com.android.mms.ui.ConversationList
Now every thing done. compile your apk now push to your system.so now you can see your working fab button in Relativelayout :fingers-crossed:
I am here attaching my source of app where i added fab button so you can get pngs and example of layouts.:highfive:
I want to make my work aosp so i will upload my codes to Github
Download Fabulous Fab Github Source
​
​
Press Thanks Button If you Like My Work.
NOTE : Please Dont Rename Smali To your . Please Respect devs work .Like you always do Hehe . :fingers-crossed:​
​
reserved for more
reserved for more feature
First blood.. nice guide sir.
Nice Guide
Nice guide Bro....
Will try it .....
aryan_ar said:
Nice Guide
Click to expand...
Click to collapse
Welcome aryan . test it and give review too.
i attached saMPLE APK
Droidbuster said:
reserved for more feature
Click to expand...
Click to collapse
Great JOB dude
trying it soon
tnx
I like your work sir but
I have a Question that is I place fab Button in my recent menu but I am confused that in which jar I place fab Button smali in framework.jar or android policy.jar
The link is dead…
Sorry for my bad English.
来自华为荣耀畅玩4C CHM-TL00H -天生急性子 Android 小楼阁

3Minit Clock Mod v1.1

3Minit Clock Mod
This is the most customizable clock seen to date.
Add individual items so you can have any layout to wish also you can set the following for each item.
Clock position: Left, Right, Center
Changeable for each item:
Text color
Text font
text size
Selectable items are :
Hour (24) e.g.: 13
Hour (12) e.g.: 1
Minutes
Seconds
Day (numeric) eg: 02
Day (short) e.g.: Tue
Day (long) e.g.: Tuesday
Month (numeric) eg: 01
Month (short) e.g.: Jan
Month (long) e.g.: January
Year (short) e.g.: 15
Year (long) e.g.: 2015
Am-Pm
:
/
-
Space
You can also save/load your clock layouts
I cannot explain the full nature of this mod so give it a go.
Implementation Guide
1.Unzip the download files and place all of the MinitClock.smali files into SystemUI.apk/com/android/systemui/policy folder.
2.Make the changes to status_bar.xml as seen below. I have also include both the files below so you can run a diff to see the changes.
XML Source Code: status_bar.xml - Original
Code:
XML Source Code: status_bar.xml - Modded
Code:
Note there are 4 added lines 5,6,12,21 dont miss line 5 or your apk wont recompile. Also note the attributes threeminitosition="0" these mean:
threeminitosition="0" = right clock
threeminitosition="1" = center clock
threeminitosition="2" = left clock
adjust these as you need them.
3. push the contents of system/fonts from zip to your device
4. Install the included apk.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
You are free to use and bake this mod and app into your rom provided you give full and proper credits and you provide a link to this thread. Also, you cannot alter in any way without permission from me first.
This is not a open source project and I share with you as is. All codes belong to me and are copyrighted.
Downloads
3Minit Clock Mod v1.1​
XDA:DevDB Information
3Minit Clock Mod, App for all devices (see above for details)
Contributors
gharrington
Version Information
Status: Stable
Current Stable Version: 1.0
Created 2016-06-17
Last Updated 2016-06-16
Changelog
v1.1 8/6/2016
Fixed issue where app would crash on some devices.
v1.0
Initial release.
Thank you. Please screenshot
@gharrington
Another great Mod Sir.... [emoji106]
nguyentankiet said:
Thank you. Please screenshot
Click to expand...
Click to collapse
Sent from my SM-N920T using Tapatalk
Mine done
I just start to learn this stuff but I'd have to say it's the + in between @ and id. Third line down.
Edit: I just viewed the XML on my phone there is no + sign. Remove that and you should be good
angelus mortis
biglil1 said:
I just start to learn this stuff but I'd have to say it's the + in between @ and id. Third line down.
Edit: I just viewed the XML on my phone there is no + sign. Remove that and you should be good
angelus mortis
Click to expand...
Click to collapse
I try remove + and add id in id.xml, but still error
nguyentankiet said:
I try remove + and add id in id.xml, but still error
Click to expand...
Click to collapse
The only edits you make is in the status_bar.xml. Did you place the .smali files in the policy folder? Maybe I explained my first response wrong. In your edits you had @+id....
in line 3 but it should be @id. If you made an edit in your id.xml change it back
angelus mortis
biglil1 said:
The only edits you make is in the status_bar.xml. Did you place the .smali files in the policy folder? Maybe I explained my first response wrong. In your edits you had @+id....
in line 3 but it should be @id. If you made an edit in your I'd.xml change it back
angelus mortis
Click to expand...
Click to collapse
Yes, i really copy smali to policy.
You can show your statusbar xml?
nguyentankiet said:
Yes, i really copy smali to policy.
You can show your statusbar xml?
Click to expand...
Click to collapse
Just got out of work so I haven't done it yet. I'll hopefully get to it tonight. I really thought that + sign was it. If you have time start from scratch. I only looked at the zip in the op once but if I remember correctly it contains a modded and original status_bar.xml. View the modded XML in notepad++ side by side with your unmodified xml. Going one line at a time edit yours. Place the smali files in policy folder and before recompiling compare the xmls again just to make sure! Hope you get it working!!
angelus mortis
---------- Post added at 07:44 AM ---------- Previous post was at 07:05 AM ----------
nguyentankiet said:
This is status_bar.xml:10:
Code:
<com.android.systemui.statusbar.policy.MinitClock threeminit:position="2" android:gravity="left|center" android:id="@+id/minitclock" android:layout_width="wrap_content" android:layout_height="fill_parent" />
Click to expand...
Click to collapse
My apologies my friend after reading the modded xml completely and more carefully there is a + sign in between @ and id. Feel free to back hand me for that one; lol! I'm going to bed now but if you don't have it working by the time I get up pm me your framework-res.apk and SystemUi.apk and I'll do yours before I do mine. For my stupidity I owe you that!
angelus mortis
biglil1 said:
Just got out of work so I haven't done it yet. I'll hopefully get to it tonight. I really thought that + sign was it. If you have time start from scratch. I only looked at the zip in the op once but if I remember correctly it contains a modded and original status_bar.xml. View the modded XML in notepad++ side by side with your unmodified xml. Going one line at a time edit yours. Place the smali files in policy folder and before recompiling compare the xmls again just to make sure! Hope you get it working!!
angelus mortis
---------- Post added at 07:44 AM ---------- Previous post was at 07:05 AM ----------
My apologies my friend after reading the modded xml completely and more carefully there is a + sign in between @ and id. Feel free to back hand me for that one; lol! I'm going to bed now but if you don't have it working by the time I get up pm me your framework-res.apk and SystemUi.apk and I'll do yours before I do mine. For my stupidity I owe you that!
angelus mortis
Click to expand...
Click to collapse
thank you, mine done. I forget delete > end of
Code:
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui"
haha
4.0+ or 5.0+?
I've had nothing but issues with this. Had a few errors when recompiling but I got them iron out but now the app won't open no matter what I do. I tried installing like normal, putting it into System/apps, in System/priv-apps but still it doesn't work. I'm on rooted stock 6.0.1 30M Nexus 6
biglil1 said:
I've had nothing but issues with this. Had a few errors when recompiling but I got them iron out but now the app won't open no matter what I do. I tried installing like normal, putting it into System/apps, in System/priv-apps but still it doesn't work. I'm on rooted stock 6.0.1 30M Nexus 6
Click to expand...
Click to collapse
Yes. Have issue with font
View here http://forum.xda-developers.com/showthread.php?t=3400221
nguyentankiet said:
Yes. Have issue with font
View here http://forum.xda-developers.com/showthread.php?t=3400221
Click to expand...
Click to collapse
Thanks!
angelus mortis
v1.1 ready for download.
gharrington said:
v1.1 ready for download.
Click to expand...
Click to collapse
Working now! Thanks!
angelus mortis
Duplicate of 3Minit Clock Mod v1.1
closed at op request.

Categories

Resources