0

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

4

5 回答 5

3

在清单文件中像这样使用:-

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black.NoTitleBar" >
于 2012-11-07T05:40:44.847 回答
1

只是在您希望没有标题的活动中获得许可

 android:theme="@android:style/Theme.NoTitleBar"
于 2012-11-07T05:47:33.637 回答
0

像这样使用..

 public void onCreate(Bundle savedInstanceState) 
 {

        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.main);
 }
于 2012-11-07T05:42:39.113 回答
0

如果你只想要默认主题而没有标题,你可以把它放在你的清单文件中:

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

您也可以从ThemeEclipse 布局上方的下拉菜单中进行设置。

于 2012-11-07T05:42:56.780 回答
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);

}
于 2012-11-07T05:44:43.150 回答