android中状态栏怎么布局
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android中状态栏怎么布局相关的知识,希望对你有一定的参考价值。
参考技术A 有一个思路,使用正常的Toolbar,把页面的布局设置为Overly,这样页面内容就会顶到屏幕最顶,toolbar和statusbar的颜色都设置为透明。如果要给toolbar加背景,可以在真正的内容布局那块添加一个子view叠加在toolbar和startbar下面,大功告成=_= 参考技术B 主布局<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.asiatravel.atstaybar.MainActivity">
<Button
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@color/colorAccent"
android:text="主布局"
android:textSize="20sp" />本回答被提问者采纳
android 怎么设置状态栏字体颜色
参考技术A通过Style来修改状态栏颜色。
1.设置 colorPrimary,colorPrimaryDark两个颜色。
<stylename="AppTheme"parent="Theme.AppCompat.Light.NoActionBar">
<itemname="colorPrimary">@android:color/holo_blue_bright</item>
<itemname="colorPrimaryDark">@android:color/holo_blue_bright</item>
</style>
2. AndroidManifest.xml文件中的targetSdkVersion必须设置在21以上。
3.parent主题必须是Theme.AppCompat开头,兼容包下的主题,所以必须一用v7包。
colorPrimary,colorPrimaryDark这两个属性是Material Design风格中规定的。具体位置如下图所示:
以上是关于android中状态栏怎么布局的主要内容,如果未能解决你的问题,请参考以下文章