-2

I want to make custom status bar and placed in the bottom of the android screen.. I am new to android developing..... please any one guide me.....customized status bar should be appear at lancher screen (Home screen)...... please any one guide me.....

Thank you In advance.

user946456
  • 69
  • 9
  • duplicate question...http://stackoverflow.com/questions/2494787/how-to-customize-the-top-status-bar-in-an-android-app – himanshu Feb 15 '12 at 06:52
  • possible duplicate of [How to change progress bar's progress color in Android](http://stackoverflow.com/questions/2020882/how-to-change-progress-bars-progress-color-in-android) – JMax Jul 25 '12 at 08:07

1 Answers1

0

set your theme to

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

and just draw new title bar on screen using canvas etc.

or just use

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.my_layout);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.my_custom_title);
Ruuhkis
  • 1,924
  • 1
  • 27
  • 46
  • yes you are right Ruuhkis...I want to make custom status bar and placed in the bottom of the android screen.. I am new to android developing..... please any one guide me.....customized status bar should be appear at lancher screen (Home screen).....plz guide me any one – user946456 Feb 15 '12 at 08:56
  • requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); setContentView(R.layout.my_layout); getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.my_custom_title); – Ruuhkis Feb 15 '12 at 11:42