欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

Android 如何隐藏导航栏/标题栏(4种方式)

程序员文章站 2024-01-01 11:17:46
本文档为个人博客文档系统的备份版本、作者:小游、作者博客:点击访问有4种方式在mainfest中定义android:theme="@android:style/Theme.NoTitleBar"自定义style使用代码if (getSupportActionBar() != null){ getSupportActionBar().hide();}使用代码2this.requestWindowFeature(Window.FEATURE_NO_TITLE);setCont....

本文档为个人博客文档系统的备份版本、作者:小游、作者博客:点击访问

有4种方式

在mainfest中定义

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

自定义style

Android 如何隐藏导航栏/标题栏(4种方式)

使用代码

if (getSupportActionBar() != null){
   getSupportActionBar().hide();
}

使用代码2

this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);

Android 如何隐藏导航栏/标题栏(4种方式)

参考文章:https://blog.csdn.net/daihuimaozideren/article/details/78224927

还有我这里报错
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

https://blog.csdn.net/ouyang_peng/article/details/51334761
解决方案就是自己继承activity或者使用下面的方式

Android 如何隐藏导航栏/标题栏(4种方式)

本文地址:https://blog.csdn.net/xiaoyou625/article/details/110674101

相关标签: 程序语言

上一篇:

下一篇: