Android沉浸式顶部实现代码及效果
作者:手撕高达的村长 时间:2021-06-19 18:51:49
研究了下这个,记录下代码。
主页面代码:activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="match_parent"
android:layout_height="70dp"
android:text="Hello World!"
android:gravity="center"
android:background="@color/colorAccent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<!-- android:fitsSystemWindows="true" android:clipToPadding="true"-->
</android.support.constraint.ConstraintLayout>
添加三个文件:三份 style 文件,即默认的values(不设置状态栏透明)、values-v19、values-v21(解决半透明遮罩问题)。
values 下 style.xml
<style name="TranslucentTheme" parent="AppTheme">
<!--在Android 4.4之前的版本上运行,直接跟随系统主题-->
</style>
values-v19 下 style.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="TranslucentTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
</style>
</resources>
values-v21 下 style.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="TranslucentTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowTranslucentStatus">false</item>
<item name="android:windowTranslucentNavigation">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
</resources>
这里需要在:AndroidMainfest.xml 里添加样式。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="controller.hzl.com.dingbu2">
<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/AppTheme">
<activity android:name=".MainActivity"
android:theme="@style/TranslucentTheme"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
主Acitivity没有修改。
效果图:
来源:https://www.cnblogs.com/sunxun/p/9543211.html
标签:Android,沉浸,顶部
0
投稿
猜你喜欢
SpringBoot 添加本地 jar 文件的操作步骤
2022-03-09 21:36:11
Java中BigInteger与BigDecimal类用法总结
2021-09-14 07:15:26
关于mybatis一对一查询一对多查询遇到的问题
2022-01-26 05:25:12
Spring Security保护用户密码常用方法详解
2023-01-24 17:06:18
Android利用Espresso进行UI自动化测试的方法详解
2021-09-04 08:02:51
PageHelper插件实现一对多查询时的分页问题
2021-11-05 07:02:34
spring多数据源配置实现方法实例分析
2023-06-06 22:15:56
Android实现ListView异步加载的方法(改进版)
2023-11-24 12:08:49
浅析Spring和MyBatis整合及逆向工程
2022-07-09 08:27:11
C#集合之集(set)的用法
2023-05-18 06:04:53
C#的静态工厂方法与构造函数相比有哪些优缺点
2022-08-29 21:11:45
SpringBoot2学习之springboot与spring区别分析
2023-02-22 17:44:28
Java高性能序列化工具Kryo详情
2021-11-02 16:42:00
Java实现简单邮件发送功能
2023-08-15 00:53:23
java实现微信点餐申请微信退款
2022-10-29 19:07:57
java当中的定时器的4种使用方式
2022-08-07 14:31:39
详解Java执行groovy脚本的两种方式
2021-05-28 09:23:27
在Android中通过Intent使用Bundle传递对象的使用方法
2023-04-23 10:15:38
Android Activity跳转动画效果
2023-11-25 02:34:51
Java带复选框的树(Java CheckBox Tree)实现和应用
2021-07-25 20:53:46