我一直在努力将底部导航视图放在底部。它不是定位到底部。底部导航视图放置在带按钮的相对布局中。这是文件中的xml代码
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="?android:attr/windowBackground"
app:menu="@menu/navigation" />
</RelativeLayout>
上面是我的代码的典型显示,但底部导航视图未对齐到底部。考虑到上述代码段,请问如何将底部导航视图放在我的活动的底部
答案 0 :(得分:4)
将layout_gravity
的{{1}}属性更改为android:layout_alignParentBottom="true"
。
答案 1 :(得分:0)
你必须添加
android:layout_alignParentBottom="true"
到你的bottomNavigationView