微调框下拉菜单在constraintlayout的底部导航视图上重叠

时间:2018-11-30 13:35:08

标签: android android-fragments android-spinner android-constraintlayout

我有一个活动,其中有bottomnavigationview和约束布局中的一个片段。 在其中一个片段下拉菜单中 当我单击下拉菜单时,它与底视图重叠

enter image description here

这是我的活动代码

<android.support.constraint.ConstraintLayout 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=".ui.home.HomeActivity">

<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintBottom_toTopOf="@+id/navigation"/>

<android.support.design.widget.BottomNavigationView
    android:id="@+id/navigation"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginEnd="0dp"
    android:layout_marginStart="0dp"
    android:background="?android:attr/windowBackground"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:menu="@menu/navigation" />

1 个答案:

答案 0 :(得分:0)

将FrameLayout的宽度高度更改为“ match_constraint ”,也称为“ 0dp ”。

也不要忘记将 Left_toLeftOf Right_toRightOf 更改为开始/结束。