Android Bar that contains a title for the Application or for the current Screen. It is the same as the Android ActionBar.
Questions tagged [android-titlebar]
151 questions
2
votes
3 answers
Android - Customizing the title bar
I want to customize the title bar for an Android application. I have the following layout:

Amokrane Chentir
- 29,907
- 37
- 114
- 158
2
votes
3 answers
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 setFeatureDrawableResource(Window.FEATURE_LEFT_ICON,R.drawable.title_logo);
…

Sameer Z.
- 3,265
- 9
- 48
- 72
2
votes
2 answers
How to change title's position in toolbar?
I have a toolbar in my activity (actionbar app is removed). In my toolbar, I have a title and icon. Now I want to move the title to the right with this code: android:layoutDirection="rtl" but the icon is also moved.
I want to move only the title to…

Nima Khalili
- 251
- 7
- 18
2
votes
5 answers
Android Studio Navigation bar showing Apps's name is missing?
When I launch the apps in Emulator, I realize the Navigation bar which shows apps name is missing. May I know what's going on?
public class MainActivity extends Activity implements OnClickListener {
EditText first_name;
EditText last_name;
Button…

gosulove
- 1,645
- 2
- 26
- 40
2
votes
2 answers
Default title bar displayed before my custom title bar appears
I' developing an android app and I need to use my custom title bar using a picture and two buttons. The thing is, immediately when I launch my app, during 1 or 2 seconds before my custom title bar appears, there is the ugly default one with "my…

Virthuss
- 3,142
- 1
- 21
- 39
2
votes
1 answer
How to change the launcher activity name and icon and keep the app name and icon?
I would like to have different title bar icons and names in the different activities, but not to change the app name or icon. The first activity should not have a title name.
This is what I have in the AndroidManifest.xml:

Apostrofix
- 2,140
- 8
- 44
- 71
2
votes
3 answers
Can't remove TITLE BAR
I know this question has been asked for a million times. But none of the answers helped me.
Every time I want to remove the TITLE BAR on MainActivity which extends ActionBarActivity, my application crashes or nothing happens. I have tried everything…

kl1432
- 23
- 3
2
votes
5 answers
set title bar name of a activity
I'm trying to change my applications activity menu bar title. I managed to change font as follows. Anyone help me to change the name of the title. It may be just a one line, but I can't figure it out.
int actionBarTitle =…

Channa
- 3,267
- 7
- 41
- 67
2
votes
3 answers
Android remove title bar from Action bar
I have an activity in my app, which is using swipeable tabs with action bar
For example :-
this tutorial
So my question is to add action bar to my activity and remove titlbar
similar question

Nishant Tanwar
- 383
- 4
- 8
- 18
2
votes
1 answer
Hiding Title Bar in Android 4.4 (Specifically Galaxy Tab 4)
I have been trying to hide the Title Bar of my app for 2 days now.
I have tried all the usual methods suggested by the web and SDK:
requestWindowFeature(Window.FEATURE_NO_TITLE); and using Themes: @android:style/Theme.Black.NoTitleBar.Fullscreen and…

Michael
- 83
- 4
2
votes
2 answers
Caused by: android.util.AndroidRuntimeException: requestFeature() must be called before adding content android exception
I know this question is already been asked on stack but i tried all the solutions but of no use.Still i'm getting the same below error
Caused by: android.util.AndroidRuntimeException: requestFeature() must be called before adding content
below is…

yuva ツ
- 3,707
- 9
- 50
- 78
2
votes
3 answers
How to make Title Bar & Tabs custom using Fragments
I am writing a program in which i am using Fragments to work with Tabs, but i need few changes in my UI
I need few changes in my UI, small 5 questions:
Question 1: How to Change Background color of TITLE BAR (I want RED)
Question 2: How to Change…

Sonali
- 783
- 4
- 11
- 26
2
votes
2 answers
Cant Hide Notification bar in Android 4.3 API 18
Prior to 4.3,
@android:style/Theme.Black.NoTitleBar
and
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);`
works perfectly to hide…

Mihir
- 2,064
- 2
- 21
- 28
2
votes
2 answers
Android - Adding buttons to the title
Please, let me know, how to add buttons to the title bar.
Remove the title completely and create a custom title with an ImageView for example.
or
Use another approach
My Goal is something similar to the Facebook app
UPDATE:
API Level >= 10

Shlomi Schwartz
- 8,693
- 29
- 109
- 186
2
votes
1 answer
Android hiding the title bar after progress bar finishes loading
I'm trying to hide the title bar after the progress bar finishes loading on top. Could anyone show me how it is done? Thanks
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
…

KC Chai
- 1,607
- 9
- 30
- 59