美文网首页
07.android 状态栏与标题栏一体化

07.android 状态栏与标题栏一体化

作者: 随风_逝 | 来源:发表于2018-06-11 15:06 被阅读13次

    step1.设置 Acitivity 所在 window 的属性:

     @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main_one);
    
            //透明状态栏
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
                Window window = getWindow();
                window.setFlags(
                                WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS,
                                WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
            }
    
        }
    

    step2.由于要实现的是状态栏和顶部的控件是同一个颜色,同时,控件内容也不和状态栏重复,所以只要把下面两行代码放到我们顶部的控件就可以了:

     android:fitsSystemWindows="true"
     android:clipToPadding="true"
    
    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:fitsSystemWindows="true"
        android:clipToPadding="true"
        android:background="#32A082">
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:gravity="center"
            android:background="#32A082">
    
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textSize="18sp"
                android:textColor="#fff"
                android:text="顶部"/>
    
        </LinearLayout>
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#ffffff"></LinearLayout>
    </LinearLayout>
    

    详情请参照:https://blog.csdn.net/jdsjlzx/article/details/50437779

    相关文章

      网友评论

          本文标题:07.android 状态栏与标题栏一体化

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