In my android application I want the standard/basic title bar to change color.
To change the text color you have setTitleColor(int color), is there a way to change the background color of the bar?
|
|
This thread will get you started with building your own title bar in a xml file and using it in your activities Edit Here is a brief summary of the content of the link above - This is just to set the color of the text and the background of the title bar - no resizing, no buttons, just the simpliest sample res/layout/mytitle.xml - This is the view that will represent the title bar
res/values/themes.xml - We want to keep the default android theme and just need to change the background color of the title background. So we create a theme that inherits the default theme and set the background style to our own style.
res/values/styles.xml - This is where we set the theme to use the color we want for the title background
res/values/colors.xml - Set here the color you want
In the AndroidMANIFEST.xml, set the theme attribute either in the application (for the whole application) or in the activity (only this activity) tags
From the Activity (called CustomTitleBar) :
|
|||||||||||||||||||||
|
|
Thanks for this clear explanation, however I would like to add a bit more to your answer by asking a linked question (don't really want to do a new post as this one is the basement on my question). I'm declaring my titlebar in a Superclass from which, all my other activities are children, to have to change the color of the bar only once. I would like to also add an icon and change the text in the bar. I have done some testing, and managed to change either one or the other but not both at the same time (using setFeatureDrawable and setTitle). The ideal solution would be of course to follow the explanation in the thread given in the link, but as i'm declaring in a superclass, i have an issue due to the layout in setContentView and the R.id.myCustomBar, because if i remember well i can call setContentView only once... EDIT Found my answer : For those who, like me, like to work with superclasses because it's great for getting a menu available everywhere in an app, it works the same here. Just add this to your superclass:
(you have to declare the textview as protected class variable) And then the power of this is that, everywhere in you app (if for instance all your activities are children of this class), you just have to call
and your titlebar will be edited. The XML associated in my case is (R.layout.customtitlebar) :
|
||||
|
There is another way to change the background color, however it is a hack and might fail on future versions of Android if the View hierarchy of the Window and its title is changed. However, the code won't crash, just miss setting the wanted color, in such a case. In your Activity, like onCreate, do:
|
|||||
|
on above code you can try you can use title instead of titlebar this will affect on all activity in your application |
|||
|
|
|
I suppose no. You can create titleless activity and create your own title bar in activity layout. Check this, Line 63 and below:
sets customview instead of default title view. |
||||
|
|
|
Take a peek in You may be able to even select the title for direct tweaking by doing:
|
||||
|
|
Try with the following code
also use this link its very useful : http://nathanael.hevenet.com/android-dev-changing-the-title-bar-background/ |
||||
|
|