视图不能在BottomNavigationView上暂停

时间:2018-11-02 10:50:55

标签: android bottomnavigationview

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".Main2Activity">
   <android.support.design.widget.BottomNavigationView
        android:id="@+id/navigation"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="?android:attr/windowBackground"
        app:menu="@menu/navigation" />
    <TextView
        android:id="@+id/message"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@id/navigation"
        android:layout_centerInParent="true"
        android:gravity="center"
        android:text="@string/title_home" />
    <Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignTop="@id/navigation"
        android:layout_alignBottom="@id/navigation"
        android:background="#ff0000" />
    </RelativeLayout>

这是一个简单的布局。我希望该按钮被挂在底部导航视图上,但是不起作用。这是我的代码。

enter image description here

1 个答案:

答案 0 :(得分:0)

如果您希望按钮位于BottomNavigationView的前面,则应这样声明您的按钮布局:

<Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/navigation"
        android:layout_alignBottom="@+id/navigation"
        android:background="#ff0000" />

如果您希望它始终位于BottomNavigationView上方:

<Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/navigation"
        android:background="#ff0000" />