[REQ] Semi-transparent status bar/notification bar

caspersfi

Senior Member
Apr 12, 2011
3,632
2,163
0
West Virginia
Go to the Play Store. Put a search in for Super Status Bar. You can make your status bar any color u want among many other features BUT I'm not sure about 50 percent transparency, like your pic shows.

Give it a shot though. Pretty cool app.

EDIT: Just tried it and I can make the status bar 100 percent transparent with the app. This is on Liquids AOSP 4.2. The app is universal tho so it'll work the same for TW ROMS.
 
Last edited:

Organized_Chaos

Senior Member
Aug 27, 2011
123
31
28
Hmm.. this doesn't seem to be what I'm looking for exactly. It seems like it's an app to fully replace the status bar. Just to clarify, I am looking for a way to theme the default status bar, not replace it with a 3rd party app.
 

David Dee

Senior Member
Nov 12, 2010
1,921
822
0
Toronto
Send me your systemui.apk, the percentage transparency you desire (and colour if applicable) and I will cook it up for you.

If you are able to compile/decompile the systemui, I would also be happy to give you instructions how to do it?

Sent from my SGH-I747M using XDA Premium HD app
 
A

A51Rene

Guest
@David Dee:

I can't seem to get my status bar to be transparent. I can change it from black to whatever color I like, blue for example:

- Image
- Image
(Yeah, I've changed the battery icons, connection icons and notification center background with success)

I am changing the HEX colors for the status bar background in SystemUI/res/values/drawables.xml and some status bar and notification center related files in SystemUI/res/layout. The HEX color for full transparency should be #00000000 (AARRGGBB format).
When I use this color, the statusbar stays black (like it is default)...

What am I missing here...
 
M

mentose457

Guest
@David Dee:

I can't seem to get my status bar to be transparent. I can change it from black to whatever color I like, blue for example:

- Image
- Image
(Yeah, I've changed the battery icons, connection icons and notification center background with success)

I am changing the HEX colors for the status bar background in SystemUI/res/values/drawables.xml and some status bar and notification center related files in SystemUI/res/layout. The HEX color for full transparency should be #00000000 (AARRGGBB format).
When I use this color, the statusbar stays black (like it is default)...

What am I missing here...
Change line 2 in tw_super_status_bar.xml (found in ~/res/layout) to this:

Code:
<com.android.systemui.statusbar.phone.StatusBarWindowView android:background="#[COLOR="Red"]00000000[/COLOR]"
Also change

The transparency of the status bar in tw_status_bar.xml ((found in ~/res/layout)

Code:
<com.android.systemui.statusbar.phone.PhoneStatusBarView android:orientation="vertical" android:id="@id/status_bar" android:background="#[COLOR="red"]00000000[/COLOR]" android:focusable="true" android:fitsSystemWindows="true" android:descendantFocusability="afterDescendants"
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
    <LinearLayout android:gravity="center" android:orientation="horizontal" android:id="@id/center_clock_layout" android:layout_width="fill_parent" android:layout_height="fill_parent">
 
Last edited:

RockRatt

Senior Member
Aug 1, 2010
4,102
3,711
0
I am not in front of a pc right now, but you could make 1 xml change so thst rather than a color it will use a .png status bar of any type. Basically (and I may have the path wrong right now) but fhange where the status bar xml is from #ff000000 or whatever it is to @drawable/status_bar_bg and then look in your systemui/xhdpi folder and you will see a status_bar_bg.png that you can make or change to anything/any color you want. If you cannot find it right away let ke know and I will type the exact path to it and what to change it to. Then once done you can use Morohology's different status bar backgrounds they have available or make your own VERY EASILY. I did this for my SGS2 and made a post with many themes. Status bars being one of them.

This will make it so you wont have to change the systemui xml again on the firmware. You can just flash a cwm zip each time with a different stats_bar_bg.png each time you want to change it.

Sent from my SAMSUNG-SGH-I747 using xda premium
 
Last edited:

fumes007

Senior Member
Mar 15, 2013
541
712
0
Send me your systemui.apk, the percentage transparency you desire (and colour if applicable) and I will cook it up for you.

If you are able to compile/decompile the systemui, I would also be happy to give you instructions how to do it?

Sent from my SGH-I747M using XDA Premium HD app
Can u pls make me one for my stock ROM?

Sent from my SAMSUNG-SGH-I747 using xda app-developers app
 

KFlexx

Member
Dec 20, 2010
39
8
8
I'm on the same situation.
I'm looking to have my status bar transparent but i don't know where to start. My phone is running cianogenmod jb 4.2.2 from my 15. I tried to edit the file status_bar.xml from the systemui.apk but there is no value tha I can change. I'm looking for a way to have it fully transparent.

Sent from my SAMSUNG-SGH-I747 using xda premium
 
M

mentose457

Guest
I'm on the same situation.
I'm looking to have my status bar transparent but i don't know where to start. My phone is running cianogenmod jb 4.2.2 from my 15. I tried to edit the file status_bar.xml from the systemui.apk but there is no value tha I can change. I'm looking for a way to have it fully transparent.

Sent from my SAMSUNG-SGH-I747 using xda premium
In system UI navigate to drawables.xml in ~/res/values/ and make the following change from:
Code:
<item type="drawable" name="status_bar_background">#ff000000</item>
to:
Code:
<item type="drawable" name="status_bar_background">#00000000</item>
 

spaceghost21

Member
Feb 28, 2013
41
4
0
In system UI navigate to drawables.xml in ~/res/values/ and make the following change from:
Code:
<item type="drawable" name="status_bar_background">#ff000000</item>
to:
Code:
<item type="drawable" name="status_bar_background">#00000000</item>
How come I don't have the folder "values" under "systemui.apk/res/"

Sent from my SAMSUNG-SGH-I747 using xda premium
 
M

mentose457

Guest
How come I don't have the folder "values" under "systemui.apk/res/"

Sent from my SAMSUNG-SGH-I747 using xda premium
If you properly decompiled the app with a tool like apktool. Then the systemui.apk you used is not deodexed. Look in your /system/app folder for a file called systemui.odex. If it is there you need to deodex it before you can so this mod.

Sent from my DROID RAZR HD using Tapatalk 4 Beta
 
Last edited: