The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
83 views

Show title bar from code

In the manifest file I have this line to my application tag android:theme="@android:style/Theme.NoTitleBar" and basically every activity doesn't have a title bar, but for one of the activities I ...
0
votes
1answer
67 views

Not able to hide the Android title bar outside the onCreate method

I'm implementing an application that runs always in fullscreen and with no title bar. There's a situation where the user clicks on a button and use the voice recognition feature API. An android native ...
1
vote
1answer
113 views

How to disable the window's title in a FragmentActivity?

In my activity that extends the FragmentActivity class, I can't disable the title using this.requestWindowFeature(Window.FEATURE_NO_TITLE);. It gives an ANR. How can I disable a FragmentActivity's ...
0
votes
0answers
157 views

Custom title bar within TabHost

I want to create a custom title bar with RightButton, LeftButton and a CenteredTextView. This custom title bar is customized in each activity that runs within the Tab Host : Each activity overwrite ...
2
votes
4answers
128 views

Android: Issue with hiding title bar

I want to hide the title bar in all activities of my app. To do that, I put the following attribute in the tag: android:theme="@android:style/Theme.NoTitleBar" The title bar is now hidden, but my ...
1
vote
4answers
304 views

How to set a default layout in a theme

I'm using a custom titlebar in my app, but everytime I create a new layout I have to call: <include android:id="@+id/titlebar" android:layout_width="match_parent" ...
0
votes
1answer
436 views

android setText not working for custom title bar layout

I have made a custom title bar for my floating activity. Now I want to change text of TextView in my custom title programmatically, but unable to do so. I can change text via xml, but i want it to do ...
1
vote
1answer
367 views

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) { ...
0
votes
2answers
369 views

Customized Title bar in android

I want to develop a title bar in android like this Home Button - Left aligned Application Title - At the center Image Icon - Right Aligned I am not sure how to do it. I am a new user and hence not ...
1
vote
2answers
790 views

How to get rid of the Title Bar without losing the ICS look?

I tried this which was readily available when googled: android:theme="@android:style/Theme.NoTitleBar" But when I apply it, it changes the overall theme back to pre-ice cream sandwich. What I mean ...
0
votes
0answers
79 views

Issue in Title bar Customization

I have created a customized title. The supported xmls are <?xml version="1.0" encoding="UTF-8"?> <resources> <style name="CustomWindowTitleBackground" /> <style ...
5
votes
4answers
680 views

findViewById(android.R.id.progress) returns null

The Android Developers reference lists R.id.progress among the built-in View resources available. Yet, when I issue (in my activity class) the statement: View pv = ...
6
votes
2answers
346 views

Is it possible to change the color of activity's title bar without FEATURE_CUSTOM_TITLE?

All the solutions I have found so far for changing the color of the activity's title bar (i.e. the one accessed via activity.setTitle() and activity.setProgress()) mandate a FEATURE_CUSTOM_TITLE: ...
5
votes
1answer
548 views

Combine custom title with FEATURE_PROGRESS

In my onCreate() I set a progress bar as follows: getWindow().requestFeature(Window.FEATURE_PROGRESS); getWindow().setFeatureInt( Window.FEATURE_PROGRESS, Window.PROGRESS_VISIBILITY_ON); Now, ...
0
votes
1answer
101 views

How to remove spaces in customized Title bar

Description : I am creating customized title bar. The codes for customization is as follow : styles.xml <?xml version="1.0" encoding="UTF-8"?> <resources> <style ...
-4
votes
3answers
185 views

UI design similar to iOS in Android [closed]

Questions : I want to implement similar look and feel of the title bar default in ipad. How can provide similar look and feel??
0
votes
3answers
323 views

android - How to Hide the stausbar

I set the following property in application tag of manifeast file. but it hides both titlebar(Actionbar) and Statusbar.Here i want to hide only the statusbar. ...
1
vote
2answers
237 views

The header/title-bar in my android app doesn't wrap the width and height.

The code used in all the activites is: requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.mytitle); ...
1
vote
1answer
938 views

ViewPageIndicator- Jake Wharton- Why tabs with viewpager shows title unlike ICS?

I am attaching image to explain my question in more detail. Also attaching android manifest. <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="XXXXXXXXXX" ...
3
votes
1answer
2k views

Android 4.0 and custom title bar is not working

I have a application for android 2.3.3 where I am setting some custom titles like this: final boolean customTitleSupported = requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); ...
0
votes
1answer
163 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 ...
2
votes
3answers
1k views

Custom Title bar & Tabs

Is there any way to change the content of the 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 bar ...
0
votes
2answers
1k 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
894 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
0answers
409 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
323 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 ...
1
vote
2answers
474 views

Running the Android app without TitleBar

As by default, the application name is appearing on one label like TextView. How do i remove my titlebar permanently for my application? Any ideas?
2
votes
1answer
446 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); ...
0
votes
3answers
1k 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
282 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: ...
2
votes
2answers
945 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 ...
2
votes
3answers
4k 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
1k 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
1answer
740 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
3answers
2k 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
557 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, ...
5
votes
2answers
3k 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 ...
0
votes
2answers
275 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 ...
5
votes
2answers
8k 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 ...
44
votes
4answers
54k 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 ...