Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to hide the app title bar.

share|improve this question

3 Answers

You can do it programatically:

import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;

public class ActivityName extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // remove title
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
        setContentView(R.layout.main);
    }
}

Or you can do it via your AndroidManifest.xml file:

<activity android:name=".ActivityName"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
</activity>

Edit: I added some lines so that you can show it in fullscreen, as it seems that's what you want.

share|improve this answer
how can u also the hide the bar that shows the time and how many bars u have – ryan May 19 '10 at 3:36
The androidmanifest solution doesn't work for me. At least it isn't shown by code completion – Vincent Mar 31 '11 at 14:17
on tablet,this codes hidden option menu.how can solve it? – CooL i3oY Sep 8 '12 at 7:38
@Ciristian: if i use these codes,on tablet,like galaxy tab 7",buttons(buttom of table) is hidden!and user can not close program or see option menu!how to solve this? – CooL i3oY Sep 16 '12 at 4:16

use

<activity android:name=".ActivityName" 
          android:theme="@android:style/Theme.NoTitleBar">
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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