ADD CUSTOM IMAGE IN SETTINGS BACKGROUND(no xpose needed) - Passionate Geekz

Breaking

Where you can unleash your inner geek.

Thursday 28 July 2016

ADD CUSTOM IMAGE IN SETTINGS BACKGROUND(no xpose needed)

Welcome everyone!!!

Here i Guide You to Add Custom Image settings backgroud of your rom 

Tested On KK,3.4.xx,CM
Requirements: 
Apktool
Knowledge of decompiling/recompiling
Settings.apk
notepad++ 
Process :


VIDEO GUIDE


NOTE: JOIN OUR OFFICAL FACEBOOK GROUP FOR INSTANT UPDATES
SUBSCRIBE NOW

IT MOTIVATES ME TO MAKE MORE VIDEO GUIDES

  • firstly open your decompile settings folder dont know decompile recompile check previous posts
  • now open res folder
  • here open values/style.xml
  • now find style name <style name=”Theme.Settings” parent=”@*android:style/Theme.Holo”>
  • now add a new item 

        <item name=”android:windowBackground”>@drawable/settings_bg</item>
    </style>


  • after adding above item save it.
  • now create a new xml in res/drawable folder with name settings_bg or same name you mention in above item
  • after doing that in new xml copy paste below code

<?xml version=”1.0″ encoding=”utf-8″?>
<layer-list
  xmlns:android=”http://schemas.android.com/apk/res/android”>
    <item>
        <shape>
            <solid android:color=”@color/settings_action_bar_background” />
        </shape>
    </item>
    <item android:drawable=”@drawable/settings_bg” android:top=”52.0dip” />
</layer-list>
 

  • after doing above save it with name settings_bg.xml
  • now open folder res/values/colors.xml
  • here add a new color with name 

android:color=”settings_action_bar_background” />#ff000000</color>

  • so here is final step add a image in res/drawble-hdpi folder with name settings_bg resolution can be any but portrait
  • all done recompile ,sign,push 
  • if u like guides please press subscribe button to my youtube channel also join passionate geekz offical group 

No comments:

Post a Comment