How do I change the text of the title bar? as of now it just displays the title of the program and im wanting it to display something of my choosing and be different for each page/activity in my app i.e. my home page could say page1 in the title bar while another activity that the app switches to could have page2 in that page's title bar.
|
feedback
|
=> Normal way,you can Change the Title of each screen (i.e. Activity) by setting their
=> Custom - Title - barBut if you want to Customize title-bar in your way, i.e. main.xml
titlebar.xml
TitleBar.java
strings.xmlThe strings.xml file is defined under the
| |||||||
feedback
|
|
You can define the label for each activity in your manifest file. A normal definition of a activity looks like this:
Where title text should be replaced by the id of a string resource for this activity. You can also set the title text from code if you want to set it dynamically.
with this line the title is set to the city of a specific adress in the oncreate method of my activity. | |||
|
feedback
|
|
You can define your title programatically using
| |||
|
feedback
|
|
try do this...
it works for me | |||
|
feedback
|