android开发去除标题栏的方法

作者:杭州小白 时间:2021-06-30 19:11:29 

1:新建一个项目运行起来,可以看到顶部一直有个标题栏看着不是很美观

android开发去除标题栏的方法

2:有两种方法可以去除顶部标题栏
(1)将代码中AndroidManifest里android:theme="@style/Theme.MyApplication"改为android:theme="@style/Theme.AppCompat.NoActionBar">


<application
       android:allowBackup="true"
       android:icon="@mipmap/ic_launcher"
       android:label="@string/app_name"
       android:roundIcon="@mipmap/ic_launcher_round"
       android:supportsRtl="true"
       android:theme="@style/Theme.AppCompat.NoActionBar"

>

(2)在themes.xml文件里改,选中MyApplication,Ctrl+鼠标点击

android开发去除标题栏的方法

来到themes.xml文件里,把代码中parent="Theme.MaterialComponents.DayNight.DarkActionBar"替换为
parent=“Theme.AppCompat.Light.NoActionBar”


<style name="Theme.MyApplication" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
       <!-- Primary brand color. -->
       <item name="colorPrimary">@color/purple_500</item>
       <item name="colorPrimaryVariant">@color/purple_700</item>
       <item name="colorOnPrimary">@color/white</item>
       <!-- Secondary brand color. -->
       <item name="colorSecondary">@color/teal_200</item>
       <item name="colorSecondaryVariant">@color/teal_700</item>
       <item name="colorOnSecondary">@color/black</item>
       <!-- Status bar color. -->
       <item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
       <!-- Customize your theme here. -->
   </style>

3:效果展示

android开发去除标题栏的方法

来源:https://blog.csdn.net/weixin_44941105/article/details/116076590

标签:android,标题栏
0
投稿

猜你喜欢

  • Java中Collections.emptyList()的注意事项

    2022-02-28 18:04:54
  • java中的HashMap多层嵌套

    2023-11-27 07:34:52
  • servlet上传文件实现代码详解(四)

    2021-09-04 21:17:23
  • Java扑克牌速算24的方法

    2022-10-13 22:17:18
  • Android实现简洁的APP更新dialog数字进度条

    2023-01-29 18:53:39
  • java金钱处理方法实例详解

    2023-05-29 10:38:29
  • C++利用ImGUI绘制D3D外部菜单

    2023-11-18 12:35:00
  • Java基于ArrayList实现群主发红包功能

    2022-04-06 20:34:09
  • Spring Boot 启动加载数据 CommandLineRunner的使用

    2021-06-17 12:52:21
  • java实现表单必填参数验证的方法

    2023-06-16 21:41:24
  • SpringBoot ApplicationContext接口深入分析

    2021-10-21 23:00:03
  • Android仿QQ讨论组头像效果

    2021-08-13 14:08:32
  • Java中JMM与volatile关键字的学习

    2022-03-24 00:12:00
  • Unity3D实现鼠标控制视角转动

    2023-11-22 21:18:46
  • Java Springboot的目的你知道吗

    2022-12-20 14:16:24
  • java和Spring中观察者模式的应用详解

    2023-04-21 00:16:17
  • 浅析C# 基础语法的使用

    2023-05-16 13:24:50
  • Android中检查、监听电量和充电状态的方法

    2023-05-15 23:23:19
  • VS.net VSS时,编译报错:未能向文件“.csproj.FileListAbsolute.txt”写入命令行 对路径 的访问被拒绝。

    2021-10-01 18:29:12
  • java设计模式--原型模式详解

    2023-11-25 05:08:24
  • asp之家 软件编程 m.aspxhome.com