前言:
在Android5.0系统的手机上,可以将app界面与通知栏进行一体化显示。
1、首先我们先来看图
values-v11代表在 系统版本3.0的手机上会采用该文件夹下的样式
values-v21代表在 系统版本5.0的手机上会采用该文件夹下的样式
2、了解了values的版本适配后,我们接下来要在values-v21中加上设置通知栏一体化的代码
只需要添加android:colorPrimaryDark为其指定对应的颜色代码即可,是不是很简单呢?
3、为了展示其效果,我们在布局界面中设置一个简单的标题布局,
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="45dp"
android:background="#ff0000"
android:textColor="@android:color/white"
android:textSize="18sp"
android:gravity="center"
android:text="@string/hello_world" />
</RelativeLayout>
4、将我们的定义的主题应用于app
怎么样很简单吧。
转载于:https://blog.51cto.com/3048821/1682346