fragment和BottomNavigationView全面屏布局怎么设置
时间: 2023-05-20 07:06:52 浏览: 150
对于全面屏布局,可以使用以下代码:
```
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
```
对于fragment和BottomNavigationView的布局,可以使用以下代码:
```
<androidx.fragment.app.FragmentContainerView
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
app:defaultNavHost="true"
app:navGraph="@navigation/nav_graph" />
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:menu="@menu/bottom_navigation_menu" />
```
其中,nav_graph和bottom_navigation_menu需要根据实际情况进行修改。
阅读全文