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). I did this using setTitle(""); on the onCreate method. However when starting the application the former title remains displayed during 2 secs before changing to the new one.

It is probably because the titlebar is loaded before the activity loads, and I guess I either need to make the titlebar loads at the same time than when the activity loads or do this not in the code but in xml files.

Any idea?

Thanks!

(1): The reason why I want to do this is explained here.

link|improve this question

Can you post a code snippet of your onCreate() body? – Pompe de velo Jul 13 '11 at 13:39
feedback

3 Answers

up vote 1 down vote accepted

You can do it from manifest file for each activity separetely. Look here.

link|improve this answer
feedback


Try this

@Override
public void onCreate(Bundle state)
{
requestWindowFeature(Window.FEATURE_NO_TITLE);

You can also try to supply your own title layout

@Override
public void onCreate(Bundle state)
{
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.window_title);

link|improve this answer
I don't want to remove the titlebar. I want to remove the text from the titlebar. I actually have a titlebar -- which is a png. The problem is that I have the label (which is needed to name the application) written on this png, which is ugly. Hence the need to only remove that label from the titlebar. – Amokrane Chentir Jul 5 '11 at 13:56
feedback

Go to your values folder, to strings.xml. Here you see app_name string. Edit that one to your desired label.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.