我只是试图从我的项目中删除标题栏,但它也删除了底部的栏,我使用它作为选项菜单显示在那里。有什么方法可以只删除标题栏吗?
谢谢
发布于 2014-03-14 18:35:22
@Override public void onCreate(捆绑包savedInstanceState) {
remove title requestWindowFeature(Window.FEATURE_NO_TITLE);super.onCreate(savedInstanceState);// remove title setContentView(R.layout.main);}
将此代码添加到onCreate()中
发布于 2014-03-14 18:25:45
在你的样式文件中写下这一行。
<resources>
<style name="AppStyle" parent="android:Theme.NoTitleBar"></resources>发布于 2014-03-14 18:33:12
在您的java代码中使用它
requestWindowfeatures(window.Features_NoTitle);https://stackoverflow.com/questions/22402157
复制相似问题