美文网首页
安卓沉浸栏样式

安卓沉浸栏样式

作者: 上帝死了众神在堕落 | 来源:发表于2022-03-02 14:38 被阅读0次

    如果实现沉浸式状态栏呢

    <?xml version="1.0" encoding="utf-8"?>
    <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#ff66ff"
        android:fitsSystemWindows="true">
    
        <com.google.android.material.appbar.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true">
    
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="centerCrop"
                android:src="@drawable/bg"
                android:fitsSystemWindows="true"
                />
    
        </com.google.android.material.appbar.CollapsingToolbarLayout>
    
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button"
            />
    
    </androidx.coordinatorlayout.widget.CoordinatorLayout>
    

    相关文章

      网友评论

          本文标题:安卓沉浸栏样式

          本文链接:https://www.haomeiwen.com/subject/cvosrrtx.html