The android-titlebar tag has no wiki summary.
17
votes
4answers
16k views
Change title bar text in Android
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 ...
4
votes
2answers
909 views
Regarding removal of Activity Title bar in Android
i have already set the theme of my activity as android:theme = "@android:style/Theme.Dialog"
but i also want to remove the title bar of the activity. so how to use
...
3
votes
2answers
4k views
Gradient styles
In my Android application I've hidden the default title bar, introduced a TabView and added my own titlebar under that TabView's tabs. At the moment, I'm using the ?android:attr/windowTitleStyle ...
2
votes
1answer
171 views
Android custom titlebar on launch activity showing wrong title
So I am setting a custom title bar for all of my activities using the following code in the onCreate.
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(id);
...
2
votes
2answers
230 views
Android - Customizing the title bar
I want to customize the title bar for an Android application. I have the following layout:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
...
1
vote
1answer
22 views
how do i set titleBar text from a sub class
I have a Main activity that loads two classes into a FrameLayout view..
//Create Intance of Camera
camPreview = new CamLayer(this.getApplicationContext());
//Create Instance of ...
1
vote
3answers
65 views
+50
Custom Titlebar Within The Tab
Is there any way I can change the content of a title bar when it's in Tab(If it wasn't in tab i would have done it but tried couldn't find any solution). E.g. Suppose i have created a custom title ...
1
vote
3answers
927 views
android:set title bar in middle
I create the custom title using the style.I code some from http://labs.makemachine.net/2010/03/custom-android-window-title/
I have also set the icon in title bar using the ...
1
vote
2answers
534 views
How to display 'wait' icon in activity title on android?
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS)
doesn't work for me, since it should be called before onCreate in the Activity, when I need to show it only when user pressed button in ...
0
votes
2answers
76 views
How to create clickable icons on the Custom Title Bar
I want to create the click effect on the following type of custom title Bar.
There are three functions in here:Home,Title and Search, clicking either of it should perform the further function.
I ...
0
votes
2answers
101 views
How to change the application name in android
In my project when application is get installed it naming the app name as {@string/welcome_msg} not {@string/app_name}. Is there any way to make the application name not same as Main Activity label?
...
0
votes
1answer
116 views
How to hide title bar when back to onresume?
When I run app, leave the app, and then return (minimize or phone goes to sleep) my app's layout seems to have a title bar above even if I have try to use
...
0
votes
1answer
135 views
Can't get publishProgress to work properly. Help?
I have an AsyncTask that takes urls and gets the content length for all urls that are passed through. I'd like to have the progress bar update in the titlebar and have an alertbox display when it is ...
0
votes
3answers
217 views
Android — How to change the titlebar text for one activity?
This one is similar to a question that I asked yesterday. However my concern is different. To summarize I needed to remove the text from the titlebar for one of my activities (the main activity) (1). ...
0
votes
1answer
116 views
android: put window custom titlebar controls in a seperate class
I followed an online tutorial teaching how to build a custom title bar in android.
After you build the layout, here is how to add it onto an activity:
...
0
votes
1answer
468 views
Android: Change alignment in the title bar
How do you change the horizontal alignment on the title bar? Right now the default is set to the left side and I am trying to get it to be set to the right side. Any ideas?
0
votes
2answers
367 views
How do you edit title bar?
I need to get my title bar to be orange instead of the standard gray and I can't figure out how to edit it's settings. I also need to align the text so its on the right side of the title bar instead ...
0
votes
1answer
402 views
Custom TitleBar in activity ANDROID
I have a problem.
I would like custom my TitleBar and when I try with this method:
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, ...
0
votes
2answers
145 views
Properties for application specific attributes in Android
I want to center the application title/label in my Android app but I can't find a lot of documentation on how to set that property. I have found a couple of posts saying that I can create a custom ...