Quote:
Originally Posted by TeamERA
Hey Shane, I need some help, this image will be the death of me
Ive stumbled on this image on the et4g and now I really cant find where the image is, and what the name may be. I always have a problem with the image name/location of the puldown notification background in the image below, its solid black and I need to make it transparent. Ive looked in drawable-xhdpi in systemUI, with no luck. THANKS MAN.
Oh +1 for this to be a sticky since this will help all carriers.
|
Wow, I had never looked at the files yet on this phone. I've been trying to work on some AOSP themes with my Nexus S. I got the framework-res and twframework-res to decompile, but can't get the systemui to decompile. If you can give me some help on getting the systemui to decompile, I'll look for it.
Edit: Nevermind, got it.
Edit 2: I have not tried this, but taking an "educated guess" I would look at this in the values/drawables.xml:
Code:
<item type="drawable" name="notification_header_bg">#ff000000</item>
If you want to change that to an image can change that to:
Code:
<item type="drawable" name="notification_header_bg">@drawable/pulldown_bg</item>
then make an image named pulldown_bg and put it in the drawable-xhdpi folder.
Or (This is what make's me think this is right)
Look at the drawable/status_bar_expanded.xml and find:
Code:
android:background="@drawable/notification_header_bg"
and change that to:
Code:
android:background="@drawable/pulldown_bg"
making the image as above.
If it's not this then the other possibility I found was "notification_tracking_bg" which the color is called for in the drawables.xml and is linked in the status_bar_tracking.xml
Let me know if either works.
Please do not PM me with themeing question. Ask in one of the many "how to" threads.
Galaxy S III
Please click the "Thanks" button if I helped or you like my work.
Twitter @shane6374
|