我无法从我正在设置为Activity
的{{1}}中隐藏标题的视图。
Dialog
设置为参考样式的 android:windowNoTitle
,并且false
从RequestWindowFeature(WindowFeatures.NoTitle)
中调用。
是否存在另一种设置,用于从“活动”中完全删除标题的视图?
styles.xml
OnCreate
ConfigurationView
<style name="Theme.AppCompat.Light.Dialog_Configuration" parent="Theme.AppCompat.Light.Dialog">
<item name="android:windowNoTitle">true</item>
<item name="android:windowCloseOnTouchOutside">false</item>
</style>
答案 0 :(得分:0)
您在使用工具栏吗?你可以试试这个
getSupportActionBar().setDisplayShowTitleEnabled(false);
或
requestWindowFeature(Window.FEATURE_NO_TITLE);//will hide the title.
getSupportActionBar().hide(); //hide the title bar.
答案 1 :(得分:0)
在删除标题的同时,您还需要删除标题栏。尝试将以下行添加到onCreate方法:
getSupportActionBar().hide();
答案 2 :(得分:0)
在OnCreate
之后的SetContentView
方法中写入:
ActionBar.Hide();
或者,您可以尝试
NavigationPage.SetHasNavigationBar(this, false);