Presenting a full guide on theming and understanding conceps of Settings.apk
Theming it white with changeable background
Check 2nd Post
Theming it white with changeable background
Check 2nd Post
Quote:
Note. I am not responsible if you make any damage to your phone |
Quote:
This simple editing requires. # STEP 1 Patience [For that use my method of spreading cold water over your head.} # STEP 2 Notepad ++ {A very handy tool} google it if you dont have for editing xml files. # STEP 3 My provided files for changing backgrounds. |
Quote:
Lets start our work. # STEP 4 Decompile your Settings.apk # STEP 5 Open Androidmanifest.xml # STEP 6 In Code:
<application android:label="@string/settings_label" Add this Code:
android:theme="@*android:style/Theme.Light" So it will look like thisafter editing Code:
<application android:theme="@*android:style/Theme.Holo" android:label="@string/settings_label" Now find Code:
Theme.NoTitleBar Code:
Theme.Light.NoTitleBar Now open ManageApplications$ApplicationsAdapter.smali in Code:
smali/com/android/settings/applications/ManageApplications$ApplicationsAdapter.smali Find Code:
getColorStateList Above it you will see public id linked to framework i.e. Code:
0x1060001 Change it to Code:
0x1060004 # STEP 14 Recompile your apk back. |