<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:background="#6A2BCE74" tools:context=".MainActivity"> <androidx.fragment.app.FragmentContainerView android:id="@+id/fcv" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" /> <com.google.android.material.bottomnavigation.BottomNavigationView android:id="@+id/bnv" android:layout_width="match_parent" android:layout_height="wrap_content" app:itemTextColor="@drawable/selector_bottom" /> </LinearLayout>什么意思
时间: 2023-06-24 09:07:48 浏览: 547
Android LinearLayout
这是一个 Android 的布局文件,使用 LinearLayout 作为根布局,设置了垂直方向排列子视图,并设置了背景颜色。其中包含两个子视图:
1. FragmentContainerView:用于展示 Fragment 的容器,设置了宽度为 match_parent,高度为 0dp,并设置了权重为 1,使其占据剩余的空间。
2. BottomNavigationView:用于底部导航栏,设置了宽度为 match_parent,高度为 wrap_content。同时使用了一个名为 selector_bottom 的 Drawable 作为 item 的文本颜色。
阅读全文