android中状态栏怎么布局
发布网友
发布时间:2022-05-05 05:17
我来回答
共2个回答
热心网友
时间:2023-10-10 17:55
有一个思路,使用正常的Toolbar,把页面的布局设置为Overly,这样页面内容就会顶到屏幕最顶,toolbar和statusbar的颜色都设置为透明。如果要给toolbar加背景,可以在真正的内容布局那块添加一个子view叠加在toolbar和startbar下面,大功告成=_=
热心网友
时间:2023-10-10 17:55
主布局
<?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" />