How to create a custom status bar in android common for all activity in android? -


i developing small application. want add own status bar @ top of application black background containing battery, 3g,network , icon of choice. please guyz me out in creating custom status bar..thanks in advance

yes quite possible...

1- make application full screen.

2- create linear layout (as wish)

3- if app contains more 1 activity, include layout in every layout...

for app full screen:

requestwindowfeature(window.feature_no_title); getwindow().setflags(windowmanager.layoutparams.flag_fullscreen,                              windowmanager.layoutparams.flag_fullscreen); 

status bar design depends on you...


Comments