如何设置标题不显示?

时间:2012-11-07 05:38:12

标签: android

它可以通过在onCreat()中设置requestWindowFeature(Window.FEATURE_NO_TITLE)来删除标题。但标题首先显示,然后消失。标题怎么不显示?它可以在清单文件中设置吗?

5 个答案:

答案 0 :(得分:3)

在清单文件中使用如下: -

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black.NoTitleBar" >

答案 1 :(得分:1)

只是你想要没有头衔的活动的许可

 android:theme="@android:style/Theme.NoTitleBar"

答案 2 :(得分:0)

像这样使用..

 public void onCreate(Bundle savedInstanceState) 
 {

        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.main);
 }

答案 3 :(得分:0)

如果您只想要默认主题而没有标题,可以将其放在清单文件中:

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >

您也可以在日食中布局上方的Theme下拉菜单中进行设置。

答案 4 :(得分:0)

在使用requestWindowFeature(Window.FEATURE_NO_TITLE)

之前,您应始终使用setContentView
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.your_layout);

}