约束布局内的溢出布局

时间:2018-01-31 12:06:03

标签: android android-constraintlayout

我在约束布局中有两个布局。

一个保留用于实际屏幕,另一个保留用于底部工具栏

问题是实际屏幕在工具栏下流动,我希望它们彼此相邻。

在此布局中我需要更改什么?

<?xml version="1.0" encoding="utf-8"?>
<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/mainScreen"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:id="@+id/mainFrame"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toTopOf="@+id/bottom_navigation"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:background="#ff00ff00" />


    <android.support.design.widget.BottomNavigationView
        android:id="@+id/bottom_navigation"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/green"
        app:itemIconTint="@color/colorPrimary"
        app:itemTextColor="@color/colorPrimaryDark"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:menu="@menu/bottom_navigation_menu" />

</android.support.constraint.ConstraintLayout>

3 个答案:

答案 0 :(得分:0)

您忘记添加应放置导航底部视图的位置,试试这个。

<FrameLayout
    android:id="@+id/mainFrame"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layout_constraintBottom_toTopOf="@+id/bottom_navigation"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    tools:background="#ff00ff00" />


<android.support.design.widget.BottomNavigationView
    android:id="@+id/bottom_navigation"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/green"
    app:itemIconTint="@color/colorPrimary"
    app:itemTextColor="@color/colorPrimaryDark"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/mainFrame"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:menu="@menu/bottom_navigation_menu" />

答案 1 :(得分:0)

我意识到这有点古老并且可能已解决,但是认为对于那些偶然发现它的人来说值得回答...

这里的问题是FrameLayout设置为wrap_parent,这意味着它只会根据显示内容的大小而增长。

您可以使用约束权重使它尽可能大,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<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/mainScreen"
   android:layout_width="match_parent"
   android:layout_height="match_parent">

<FrameLayout
     android:id="@+id/mainFrame"
     android:layout_width="match_parent"
     android:layout_height="0dp"
     app:layout_constraintVertical_weight="1"
     app:layout_constraintBottom_toTopOf="@+id/bottom_navigation"
     app:layout_constraintLeft_toLeftOf="parent"
     app:layout_constraintRight_toRightOf="parent"
     app:layout_constraintTop_toTopOf="parent"
     tools:background="#ff00ff00" />


<android.support.design.widget.BottomNavigationView
    android:id="@+id/bottom_navigation"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/steel"
    app:itemIconTint="@color/colorPrimary"
    app:itemTextColor="@color/colorPrimaryDark"
    app:layout_constraintTop_toBottomOf="@+id/mainFrame"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:menu="@menu/menu_main_drawer" />

,重要的部分是android:layout_height="0dp"app:layout_constraintVertical_weight="1",并添加了Hemant发表的建议。

答案 2 :(得分:0)

您需要做的就是将框架布局的高度设置为od -a->约束布局将其设置为0000400 nl <EF> <BB> <BF> . b u t t o n , . b u t