[GUIDE](EASY) How to change Android's black background (AOSP) - Micromax A110

Definately This Guide Will help You .This Guide Will Help You If you ever get bored with the black background in Android, now you can changeit by making a few small edits to framework-res.apk/res/values/styles.xml
This will affect MOST of the black background you see in Android (e.g. settings, contacts, mms, installer etc.) with the exception of certain apps that use their on backgrounds (e.g. contacts logs, email etc.).
1. Decompile framework-res.apk
2. Navigate to res/values and open styles.xml
3. Locate <style name="Theme">
4. Replace<item name="colorBackground">@color/background_dark</item>with<item name="colorBackground">@color/transparent</item>
5. Replace<item name="windowBackground">@drawable/screen_background_dark</item>with<item name="windowBackground">@drawable/mybackground</item>
6. Locate <style name="Theme.Black" parent="@style/Theme">
7. Replace<item name="colorBackground">@color/black</item>with<item name="colorBackground">@color/transparent</item>
8. Replace<item name="windowBackground">@color/black</item>with<item name="windowBackground">@drawable/mybackground</item>
9. Create a 480x800 png to your liking, nameit mybackground.png and place it in drawable-hdpi folder
9. Recompile framework-res.apk
DONE ENJOY!
Note:Always create a backup before making any modifications

If You Will Face Problem Let Me Know I will Help You

GoodJOB
thanks

thank you

Interesting !
Would it be possible to set:
Code:
<item name="android:windowIsTranslucent">true</item>
using this technique ?

Related

Tutorial How to change setting background

Tutorial How to change setting background In my themes
http://www.mediafire.com/?49f25u9n0y9s75u
1.download the attached zip
2.Right click the zip open it with winrar
3.A new window open in winrar then browse vrtheme/system/framework/framework-res.apk/res/drawable-hdpi
There you will see a background_own.png now replace it with yours image[make sure it is a.png image and name as background_own]
4.Close the winrar copy this zip to your sd card and flash as always
Thanks tarun for the tutorial.
But can you share the tutorial from scratch? Because just replacing the png on a stock framework-res won't work right?
So if you can then can you explain which xml or smali are to edited?
Sent from my GT-I9003 using xda premium
really thanx buddy. It will help me a lot to play more with my phone
exctngdude said:
Thanks tarun for the tutorial.
But can you share the tutorial from scratch? Because just replacing the png on a stock framework-res won't work right?
So if you can then can you explain which xml or smali are to edited?
Sent from my GT-I9003 using xda premium
Click to expand...
Click to collapse
Try this:
1. Decompile framework-res.apk
2. Navigate to res/values and open styles.xml
3. Locate <style name="Theme">
4. Replace
<item name="colorBackground">@color/background_dark</item>
with
<item name="colorBackground">@color/transparent</item>
5. Replace
<item name="windowBackground">@drawable/screen_background_dark</item>
with
<item name="windowBackground">@drawable/mybackground</item>(if u need an image as background)
<item name="windowBackground">@color/white</item>(if u need a color as background)
6. Locate <style name="Theme.Black" parent="@style/Theme">
7. Replace
<item name="colorBackground">@color/black</item>
with
<item name="colorBackground">@color/transparent</item>
8. Replace
<item name="windowBackground">@color/black</item>
with
<item name="windowBackground">@drawable/mybackground</item>(if u need an image as background)
<item name="windowBackground">@color/white</item>(if u need a color as background)
9. Create a 240x400 png to your liking, name it mybackground.png and place it in drawable, drawable-ldpi, drawable-mdpi folder
9. Recompile framework-res.apk
NOTE: U can give any color which is available in res/values/color.xml.
Sent from my GT-I9003 using XDA App
Nice work tarunagg
Thanks a lot. which tools do you recommend to decompile the apk and to edit the.xml?
jaskiratsingh said:
Try this:
1. Decompile framework-res.apk
2. Navigate to res/values and open styles.xml
3. Locate <style name="Theme">
4. Replace
<item name="colorBackground">@color/background_dark</item>
with
<item name="colorBackground">@color/transparent</item>
5. Replace
<item name="windowBackground">@drawable/screen_background_dark</item>
with
<item name="windowBackground">@drawable/mybackground</item>(if u need an image as background)
<item name="windowBackground">@color/white</item>(if u need a color as background)
6. Locate <style name="Theme.Black" parent="@style/Theme">
7. Replace
<item name="colorBackground">@color/black</item>
with
<item name="colorBackground">@color/transparent</item>
8. Replace
<item name="windowBackground">@color/black</item>
with
<item name="windowBackground">@drawable/mybackground</item>(if u need an image as background)
<item name="windowBackground">@color/white</item>(if u need a color as background)
9. Create a 240x400 png to your liking, name it mybackground.png and place it in drawable, drawable-ldpi, drawable-mdpi folder
9. Recompile framework-res.apk
NOTE: U can give any color which is available in res/values/color.xml.
Sent from my GT-I9003 using XDA App
Click to expand...
Click to collapse
Uan_ar said:
Thanks a lot. which tools do you recommend to decompile the apk and to edit the.xml?
Click to expand...
Click to collapse
Use apk manager to decompile
And notepad++ to edit files
send from gt-i9003 using android keyboard
tarunagg said:
Tutorial How to change setting background In my themes
http://www.mediafire.com/?49f25u9n0y9s75u
1.download the attached zip
2.Right click the zip open it with winrar
3.A new window open in winrar then browse vrtheme/system/framework/framework-res.apk/res/drawable-hdpi
There you will see a background_own.png now replace it with yours image[make sure it is a.png image and name as background_own]
4.Close the winrar copy this zip to your sd card and flash as always
Click to expand...
Click to collapse
how about other theme? beside urs.
Followed the steps but i cant change the background...
Thank you very much!! I did everything but didn't work for me...
1. Download .rar
2. Open vrtheme/system/framework/framework-res.apk/res/drawable-hdpi and replace that png with another one with the same size and with the same name
3. Flash in CWM
An advice, you could edit the updater-script, because when u are flashing it, it says "get prepared for ICS world" lol.
luiseteyo said:
Thank you very much!! I did everything but didn't work for me...
1. Download .rar
2. Open vrtheme/system/framework/framework-res.apk/res/drawable-hdpi and replace that png with another one with the same size and with the same name
3. Flash in CWM
An advice, you could edit the updater-script, because when u are flashing it, it says "get prepared for ICS world" lol.
Click to expand...
Click to collapse
i always do same thing. It worked perfectly for me.
really thanx buddy. It will help me a lot to play more with my phone
does it work on xxkpu
Dear Tarunagg,
How i want changed font colour if i used this background
Sent from my GT-I9100G using XDA
Dear Tarunagg,
How i want changed font colour if i used this background
Sent from my GT-I9100G using XDA
Thanks! Worked for me!
Sent From My Galaxy SL
brothers if you can help me to change the color of progress ram in setting.apk base jelly bean unofficial 4.2.2

[GUIDE][MOD] How to change settings background image on Jellybean 4.2.x

This is how you can change all the system backgrounds plain colors (settings, contacts, etc) to an actual image instead of a color
The how to:
1. Decompile the framework-res.apk using Android Multitool
2. navigate to the res>styles>styles.xml and with notepad++ locate <style name="Theme"> and edit these lines:
change:
Code:
<item name="colorBackground">@color/background_dark</item>
to this
Code:
<item name="colorBackground">@color/transparent</item>
then change:
Code:
<item name="windowBackground">@drawable/screen_background_dark</item>
to this one to use a png for the background:
Code:
<item name="windowBackground">@drawable/backgroundftw</item>
3. Locate <style name="Theme.Black" parent="@style/Theme">
and change this line:
Code:
<item name="colorBackground">@color/black</item>
to this:
Code:
<item name="colorBackground">@color/transparent</item>
then change:
Code:
<item name="windowBackground">@color/black</item>
to this for the png image:
Code:
<item name="windowBackground">@drawable/backgroundftw</item>
4. Use a 512x512 png , name it "backgroundftw" and place it in drawable-nodpi folder
5. Recompile the framework-res.apk and replace it with the old framework-res.apk in system/framework
6. Enjoy
Things required for this tutorial:
1. Android Miltitool to decompile and replace image
2. notepad++ for the coding
3. Your brain
4. You have to know where to obtain the framework-res.apk from on your phone. Just go to system/framework using root explorer
5. Make a backup of ur ROM or a flashable of your old framework-res.apk just incase if you make a mistake while coding. So that you dont encounter a bootloop
6. Find a video on youtube to learn how to compile and decompile your framework-res.apk
Difficulty for this tutorial: medium
For images CLICK HERE
good but wrong way bro......
ur steps are correct but method is wrong....
u cannot obtain styles.xml or find value folder with 7 zip....
u need apktool for that....
n just adding images or edited styles.xml ...to framework-res.apk
bootloops n fcs.....
i
Avenger4droid said:
good but wrong way bro......
ur steps are correct but method is wrong....
u cannot obtain styles.xml or find value folder with 7 zip....
u need apktool for that....
n just adding images or edited styles.xml ...to framework-res.apk
bootloops n fcs.....
i
Click to expand...
Click to collapse
Will update the thread tomorrow
nathanjp said:
will update the thread tomorrow
Click to expand...
Click to collapse
update the thread then i will try for sure don't want bootloop
upload video bro
awesome workk bro but if u upload a video step by step then its very useful to every one or if not possible then plzz upload a image bro
Thread updated try it now
gaurav247star said:
update the thread then i will try for sure don't want bootloop
Click to expand...
Click to collapse
Bro i updated the thread a couple days ago. Try it now
great work and helpful guide
nathanjp said:
This is how you can change all the system backgrounds plain colors (settings, contacts, etc) to an actual image instead of a color
The how to:
1. Decompile the framework-res.apk using Android Multitool
2. navigate to the res>lstyles>styles.xml and with notepad++ locate <style name="Theme"> and edit these lines:
change:
Code:
<item name="colorBackground">@color/background_dark</item>
to this
Code:
<item name="colorBackground">@color/transparent</item>
then change:
Code:
<item name="windowBackground">@drawable/screen_background_dark</item>
to this one to use a png for the background:
Code:
<item name="windowBackground">@drawable/backgroundftw</item>
3. Locate <style name="Theme.Black" parent="@style/Theme">
and change this line:
Code:
<item name="colorBackground">@color/black</item>
to this:
Code:
<item name="colorBackground">@color/transparent</item>
then change:
Code:
<item name="windowBackground">@color/black</item>
to this for the png image:
Code:
<item name="windowBackground">@drawable/backgroundftw</item>
4. Use a 512x512 png , name it "backgroundftw" and place it in drawable-nodpi folder
5. Recompile the framework-res.apk and replace it with the old framework-res.apk in system/framework
6. Enjoy
Things required for this tutorial:
1. Android Miltitool to decompile and replace image
2. notepad++ for the coding
3. Your brain
4. You have to know where to obtain the framework-res.apk from on your phone. Just go to system/framework using root explorer
5. Make a backup of ur ROM or a flashable of your old framework-res.apk just incase if you make a mistake while coding. So that you dont encounter a bootloop
6. Find a video on youtube to learn how to compile and decompile your framework-res.apk
Difficulty for this tutorial: medium
Click to expand...
Click to collapse
Good work keep it up
djrkb24 said:
Good work keep it up
Click to expand...
Click to collapse
Have u tried the tutorial??
Guys do post your screenshots if you have tried out the tutorial
Will post a newer and simpler tutorial to make it easy for u guys. All you have to do is replace the image in this. Flash able zip will so be available
Hit the thanks button if you guys would like that
nathanjp said:
Will post a newer and simpler tutorial to make it easy for u guys. All you have to do is replace the image in this. Flash able zip will so be available
Hit the thanks button if you guys would like that
Click to expand...
Click to collapse
Isn't the settings background located in /res/drawable/background_holo_dark.xml?
DonDizzurp said:
Isn't the settings background located in /res/drawable/background_holo_dark.xml?
Click to expand...
Click to collapse
Nope you dont wanna edit that
nathanjp said:
Nope you dont wanna edit that
Click to expand...
Click to collapse
That's what I edited in order to remove the gradient and get an all black background. I did the styles.xml mod to get the wallpaper working though.
Its A Brilliant Guide Brother..Thanks..!
Thunder_Droid said:
Its A Brilliant Guide Brother..Thanks..!
Click to expand...
Click to collapse
Thanks bro.
work..thank you bro
could any1 let me know that how to make background transpearent
Copied Post GARBAGE

[GUIDE] Easy Way to Hide signal

Hello every one, This is easy way how to hide signal, why hide signal ?? because some people want to hide one off signal, so i share what i can
Steps ::
Decompile your SystemUI
[*]Navigate to res/drawable-hdpi
Delete some signal's png, free, it's up to you (ex :: green signal). So delete ::
Code:
stat_sys_gemini_signal_1_green.png
stat_sys_gemini_signal_2_green.png
stat_sys_gemini_signal_3_green.png
stat_sys_gemini_signal_4_green.png
Navigate to values/drawables and then add this at the bottom
Code:
<item type="drawable" name="stat_sys_gemini_signal_1_green">#00000000</item>
<item type="drawable" name="stat_sys_gemini_signal_2_green">#00000000</item>
<item type="drawable" name="stat_sys_gemini_signal_3_green">#00000000</item>
<item type="drawable" name="stat_sys_gemini_signal_4_green">#00000000</item>
Recompile your SystemUI, Done
So the question :: How to hide signal ??
Go to Settings/Sim Management, and then choose the first or the second sim to the green indicator, look at to your statusbar, your signal will be hidden
Don't say thanks if i help you, but press it :good:​
Nice Exploration
bagustinov said:
Hello every one, This is easy way how to hide signal, why hide signal ?? because some people want to hide one off signal, so i share what i can
Steps ::
Decompile your SystemUI
[*]Navigate to res/drawable-hdpi
Delete some signal's png, free, it's up to you (ex :: green signal). So delete ::
Code:
stat_sys_gemini_signal_1_green.png
stat_sys_gemini_signal_2_green.png
stat_sys_gemini_signal_3_green.png
stat_sys_gemini_signal_4_green.png
Navigate to values/drawables and then add this at the bottom
Code:
<item type="drawable" name="stat_sys_gemini_signal_1_green">#00000000</item>
<item type="drawable" name="stat_sys_gemini_signal_2_green">#00000000</item>
<item type="drawable" name="stat_sys_gemini_signal_3_green">#00000000</item>
<item type="drawable" name="stat_sys_gemini_signal_4_green">#00000000</item>
Recompile your SystemUI, Done
So the question :: How to hide signal ??
Go to Settings/Sim Management, and then choose the first or the second sim to the green indicator, look at to your statusbar, your signal will be hidden
Don't say thanks if i help you, but press it :good:​
Click to expand...
Click to collapse
kEEp it Up Bro!
good
i ve been searching for this for a long time
saalikrao said:
kEEp it Up Bro!
Click to expand...
Click to collapse
Thanks bro
sharath7610 said:
i ve been searching for this for a long time
Click to expand...
Click to collapse
Haha you get it now :laugh:
wow..very very easy thank bro

[HELP] Theme Code Editing

Hi, I want to edit a theme.apk that I'm using. In the screenshots I highlighted what I want to edit.
Screenshot 1: I want to edit the colors of the two kind of highlighted text.
Screenshot 2: I want to find and edit (maybe with Paint) highlighted images.
1:
2:
I tried to extract the APK and I think color codes are in ..\res\values\colors.xml but I don't know which code I have to edit.
This is the file: DOWNLOAD ( VIEW VERSION )
Thank you!
riki075 said:
Hi, I want to edit a theme.apk that I'm using. In the screenshots I highlighted what I want to edit.
Screenshot 1: I want to edit the colors of the two kind of highlighted text.
Screenshot 2: I want to find and edit (maybe with Paint) highlighted images.
1:
2:
I tried to extract the APK and I think color codes are in ..\res\values\colors.xml but I don't know which code I have to edit.
This is the file: DOWNLOAD ( VIEW VERSION )
Thank you!
Click to expand...
Click to collapse
2. QS text color is managed by a style from SystemUI. You won't find anything into colors.xml
Primokorn said:
2. QS text color is managed by a style from SystemUI. You won't find anything into colors.xml
Click to expand...
Click to collapse
But It change when I apply the theme
riki075 said:
But It change when I apply the theme
Click to expand...
Click to collapse
The theme changes the tiles. Nothing weird. The color is just defined into styles.xml and not colors.xml
Primokorn said:
The theme changes the tiles. Nothing weird. The color is just defined into styles.xml and not colors.xml
Click to expand...
Click to collapse
I found "folder_icon_title_text" and "folder_title_text" in colors.xml
Code:
<color name="folder_icon_title_text">#ffffffff</color>
<color name="folder_title_text">#ff33b5e5</color>
#ffffffff is white and 33b5e5 is light blue, but in the screenshot the two colors aren't those. What do you think?
riki075 said:
I found "folder_icon_title_text" and "folder_title_text" in colors.xml
Code:
<color name="folder_icon_title_text">#ffffffff</color>
<color name="folder_title_text">#ff33b5e5</color>
#ffffffff is white and 33b5e5 is light blue, but in the screenshot the two colors aren't those. What do you think?
Click to expand...
Click to collapse
Here is how I change the color if the tile text through systemui:
Code:
<style name="TextAppearance.StatusBar.Expanded.Network.EmergencyOnly" parent="@android:style/TextAppearance" />
<style name="TextAppearance" />
<style name="TextAppearance.QuickSettings" parent="@style/TextAppearance" />
<style name="TextAppearance.QuickSettings.TileView" parent="@style/TextAppearance.QuickSettings">
<item name="android:textSize">12.0dip</item>
<item name="android:textStyle">bold</item>
<item name="android:textColor">#ff111111</item>
<item name="android:textAllCaps">true</item>
<item name="android:paddingStart">6.0dip</item>
<item name="android:paddingEnd">6.0dip</item>
</style>

[MOD] [GUIDE] Status Bar Network Traffic (Separate In/Out)

Hello XDA,
This guide will show you how to add network traffic data to your status bar, with customization options in Settings. There are already several similar guides on XDA, but all of the one I've seen only give you one overall speed, whereas this gives you separate in and out speeds.
Everything needed to make this mod work was pulled from CM12, so full credit goes to the Cyanogenmod Team and Temasek, who I believe contributed it to CM. Out of respect, I have left the Temasek folder structure intact, but you may alter it as you see fit...
I have tested this on Kit-Kat and Lollipop TouchWiz ROMs, and on AOSP Lollipop ROMs, but it should work on just about anything. If it does not work on your ROM for some reason, let me know and I'll see if I can help you figure it out.
***Before proceeding, MAKE A BACKUP***
***I am not responsible for any loss of data or ***
***damage to your device resulting from this mod.***​
This mod assumes that you have working knowledge of how to decompile, edit, and recompile apps. If you do not, there are plenty of threads on XDA that will teach you. This is not one of them.
Now, let's get down to business....
We are going to be working with two apps, SystemUI and Settings (or SecSettings, depending on your ROM). Go ahead and decompile both of them, then download the attached zip file, and extract it to a location of your choice.
SystemUI
-Begin by copying the smali files from the attached zip to their respective location in your decompiled SystemUI. The correct folder structure is in the zip file, so just make sure you're putting them in the same place in your apk.
-Do the same thing for the .png files in drawable-xxhdpi.
***Note, if your device has a resolution lower than xxhdpi, you will probably need to resize the included images and place them in the drawable folder corresponding to your device's resolution***​
-Next, open up the values folder in your decompiled SystemUI. In the corresponding folder in the zip file, you will see four xml files: colors, dimens, ids, and styles. Open them up one at a time, and add the lines to the same files in your values folder.
-Finally, go to layout/status_bar.xml in your decompiled SystemUI, and add the following line wherever you choose:
Code:
<com.android.systemui.statusbar.policy.NetworkTraffic android:id="@id/networkTraffic" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="false" />
***Note: Where you place this line determines where on your status bar it will be shown, so pay attention***​
-Next, recompile your SystemUI, and once it's done, go ahead and decompile the one you just compiled (say that ten times fast).
-Go to res/values/public.xml, keep it open in a separate window, then open up smali/com/android/systemui/statusbar/policy/NetworkTraffic.smali. You are going to search the smali file for the IDs on the left, then search your public.xml for the matching string on the right, and replace the IDs in the smali with the corresponding ID from your public.xml. To make things simpler, I have also included a list of the IDs and what they correspond to in the zip file...
Code:
0x7f0c00c9 <public type="dimen" name="net_traffic_single_text_size"
0x7f0c00ca <public type="dimen" name="net_traffic_multi_text_size"
0x7f02042a <public type="drawable" name="stat_sys_network_traffic_updown"
0x7f020429 <public type="drawable" name="stat_sys_network_traffic_up"
0x7f020428 <public type="drawable" name="stat_sys_network_traffic_down"
-Once you have replaced all the IDs, recompile your SystemUI, push it back to your phone, and get ready to do Settings!
Settings
-This will be almost the same as SystemUI....Begin by copying the smali files from the zip to the corresponding locations in your decompiled Settings. Again, be sure to keep the folder structure intact.
-Next up, copy network_traffic.xml from the zip to res/xml, dialog_color_picker.xml and seek_bar_preference to res/layout, add the lines in the five files in values to the corresponding files in your res/values, and finally copy ic_action_set and ic_settings_backup.png to res/drawable-xxhdpi.
***Note: You don't have to worry about resizing ic_settings_backup if you're on a lower resolution device, as you'll never actually see it. It was part of the mod when I pulled it from CM12, so that's why it's here...***
***If you're on a lower resolution than xxhdpi, ic_action_set will need to be resized, or else it will be quite large (though still perfectly functional) in the color picker window.***​
-Next, recompile your Settings, then immediately decompile it again (any guesses as to what comes next?)
-Open up res/values/public.xml in your decompiled Settings, and then navigate to the smali files you copied earlier. Again, you are going to search the smali for the IDs below, then search your public.xml for the string next to the ID, then replace the ID in the smali with the corresponding ID from your public.xml...
NetworkTraffic.smali
Code:
0x7f0e000f <public type="integer" name="maskUp"
0x7f0e0010 <public type="integer" name="maskDown"
0x7f0e0011 <public type="integer" name="maskUnit"
0x7f0e0012 <public type="integer" name="maskPeriod"
0x7f09188a <public type="string" name="network_traffic_color_reset"
0x7f09188b <public type="string" name="network_traffic_color_reset_message"
0x7f091677 <public type="string" name="ok"
0x7f090198 <public type="string" name="cancel"
0x7f0700ef <public type="xml" name="network_traffic"
0x7f09188a <public type="string" name="network_traffic_color_reset"
0x7f02021d <public type="drawable" name="ic_settings_backup"
SeekBarPreference.smali
Code:
0x7f0b0696 <public type="id" name="seekBarPrefBarContainer"
0x7f040229 <public type="layout" name="seek_bar_preference"
0x7f0b0694 <public type="id" name="seekBarPrefValue"
0x7f0b0693 <public type="id" name="seekBarPrefUnitsRight"
0x7f0b0695 <public type="id" name="seekBarPrefUnitsLeft"
ColorPickerDialog.smali
Code:
0x7f04022b <public type="layout" name="dialog_color_picker”
0x7f091920 <public type="string" name="dialog_color_picker"
0x7f0b069f <public type="id" name="color_picker_view"
0x7f0b06a2 <public type="id" name="old_color_panel"
0x7f0b069a <public type="id" name="new_color_panel"
0x7f0b069b <public type="id" name="white_panel"
0x7f0b069d <public type="id" name="black_panel"
0x7f0b069c <public type="id" name="cyan_panel"
0x7f0b069e <public type="id" name="red_panel"
0x7f0b06a0 <public type="id" name="green_panel"
0x7f0b06a1 <public type="id" name="yellow_panel"
0x7f0b06a5 <public type="id" name="hex"
0x7f0b06a6 <public type="id" name="enter"
0x7f0b069a <public type="id" name="new_color_panel"
[STRIKE]0x7f020035 <public type=“drawable” name=“ic_action_set”[/STRIKE]
*** NOTE: I made a mistake with 'ic_action_set' above. It is not ***
*** referenced in the smali, only in layouts. If I mentioned it in the ***
*** text file in the zip, please disregard it there as well. ***​
-Finally, paste the following line into the xml corresponding to the Settings Category you wish the options to be listed under. These will either be in res/xml or res/layout. Personally, I've placed mine at the end of display_settings.xml.
Code:
<PreferenceScreen android:title="@string/network_traffic_title" android:key="network_traffic_state " android:summary="@string/network_traffic_summary" android:fragment="com.android.settings.temasek.NetworkTraffic" />
-Once you're done, recompile you Settings.apk, push back to your phone, set permissions, reboot, and you should be all set!
If I've left anything out, or if you have any questions on any part of the process, please feel free to ask!
Enjoy!
This is awesome but am I blind where is the downloadable zip? lol
sawixso81 said:
This is awesome but am I blind where is the downloadable zip? lol
Click to expand...
Click to collapse
+1 double lol!
This is a great post, but i did not imagine it would be so much work (even having to recompile)...
there's a great tool (free) which i use over 4 years, does exactly the same thing and does not require root:
Network Monitor Mini by KF Software House.
it will run not in the status bar, but just below it. if you make the label transparent, decrease font size and change the color to something more visible, it will be just perfect.
I believe this was first on OmniROM before it was on CM (via Temasek or not), but good stuff I know I got it from there(Omni) for my CM build months ago.
@Morningstar where is attach dear?
Network Monitor Mini Pro
I've been using Network Monitor Mini Pro for maybe a couple of years, and Pro has an option to display upload & download speeds in the status bar. You'll see it in the middle of the status bar - size, width, font, position all configurable.
I don't have time or expertise to follow the decomple/recompile route, but respect to Morningstar for the post.
I'm using official CM12 for Nexus5, and I can't seem to find the network traffic options in settings by default?
@Morningstar are you teasing us ? Forget to put the zip attached
Hey OP have a question for you I havent tried this yet but my said rom I am running has the network deal like this by thanhfhuongf(built into rom) but I was actually going to use your guide to reverse the mod back to stock, needless to say I managed to get it to how I want network indicator gone and regular 4g/lte icon back but the problem is the indicator arrows do not move I have web service able to browse web and download but no arrow movement Im thinking it has to with my icons because I did take from another stock systemUI and copyed/paste into my Current systemUI those icons and later on noticed that the original Icon was 54x54 in size where as my modded systemUI was bigger in size but any way if you can assist me give me a pm,thanks and I do plan on giving this a try I like the looks of this one better if I decide to give it ago.:highfive:
Awesome stuff morningstar. Thanx for sharing and taking the time to make this guide.
Sent from my SCH-I545 using Xparent BlueTapatalk 2
Simply use cool tool
https://play.google.com/store/apps/details?id=ds.cpuoverlay&hl=en
Crap, sorry guys. Forgot to attach the zip! It's been a long week.... I'll be back at my computer in about 10 minutes and I'll add it to the OP. Sorry...
nice sir :good:
waiting for attach the zip
Updated OP to include the zip, and one image/id I had forgotten. Sorry again for the tease!
[emoji12]
itachi_2611 said:
Simply use cool tool
https://play.google.com/store/apps/details?id=ds.cpuoverlay&hl=en
Click to expand...
Click to collapse
That's always an option, but I prefer to use in-built services rather than external apps whenever possible, as it results in better performance and less overhead.
I started from scratch (noob here) and it was worth my time. I read forums on how to decompile and compile an apk and just followed carefully the instructions given plus some patience. Thank you @Morningstar for your effort.
Sent from my GT-I9505 using XDA Free mobile app
@Morningstar
there is no 0x7f020035 hex in ColorPickerDialog.smali
please check it and tell me correct id for ic_action_set
Hamidreza2010 said:
@Morningstar
there is no 0x7f020035 hex in ColorPickerDialog.smali
please check it and tell me correct id for ic_action_set
Click to expand...
Click to collapse
Dammit, I had a feeling that might happen...That's the one I forgot initially, and pulled from a different build...lemme check....
Morningstar said:
Dammit, I had a feeling that might happen...That's the one I forgot initially, and pulled from a different build...lemme check....
Click to expand...
Click to collapse
Yes dear i checked a lot
Please check it and tell me , because i want to finish it
Thanks

Categories

Resources