ConstraintLayout问题:某些按钮不可见

时间:2019-02-07 18:14:19

标签: android android-constraintlayout

我仍在尝试了解ConstraintLayout

假设我有此活动:

enter image description here

RecyclerView和3 Buttons组成。 RecyclerView可能包含许多items。那三个Buttons停留在屏幕底部。

代码:

<?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:layout_width="match_parent"
    android:layout_height="fill_parent"
    tools:context=".ScanResultActivity">

    <android.support.v7.widget.RecyclerView
        app:layout_constraintBottom_toBottomOf="parent"
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <Button
        android:id="@+id/btn_buy_more"
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:text="Buy More"
        app:layout_constraintBottom_toBottomOf="@id/recycler_view" />

    <Button
        android:id="@+id/btn_checkout"
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:text="Checkout"
        app:layout_constraintBottom_toBottomOf="@id/btn_buy_more" />

    <Button
        android:id="@+id/btn_logout"
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:text="Logout"
        app:layout_constraintBottom_toBottomOf="@id/btn_checkout" />


</android.support.constraint.ConstraintLayout>

结果:

enter image description here

为什么那里只有1个按钮可见?

3 个答案:

答案 0 :(得分:2)

第一个问题,您的RecyclerView的高度设置为match_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:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".ScanResultActivity">

    <android.support.v7.widget.RecyclerView
        app:layout_constraintBottom_toBottomOf="parent"
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0"
        app:layout_constraintBottom_toTopOf="@id/btn_buy_more"/>

    <Button
        android:id="@+id/btn_buy_more"
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:text="Buy More"
        app:layout_constraintBottom_toTopOf="@id/btn_checkout" />

    <Button
        android:id="@+id/btn_checkout"
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:text="Checkout"
        app:layout_constraintBottom_toTopOf="@id/btn_logout" />

    <Button
        android:id="@+id/btn_logout"
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:text="Logout"
        app:layout_constraintBottom_toBottomOf="parent"/>


</android.support.constraint.ConstraintLayout>

结果:

enter image description here

答案 1 :(得分:1)

只有一个按钮可见,因为它设置为将 Bottom与Bottom对齐

如果要将一个按钮设置在另一个按钮上方,则应使用从下到上约束。

我不知道您想要设置的确切顺序,但是应该是这样的:

    

    <android.support.v7.widget.RecyclerView
        app:layout_constraintBottom_toBottomOf="parent"
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <Button
        android:id="@+id/btn_buy_more"
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:text="Buy More"
        app:layout_constraintBottom_toBottomOf="@id/recycler_view" />

    <Button
        android:id="@+id/btn_checkout"
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:text="Checkout"
        app:layout_constraintBottom_toTopOf="@id/btn_buy_more" />

    <Button
        android:id="@+id/btn_logout"
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:text="Logout"
        app:layout_constraintBottom_toTopOf="@id/btn_checkout" />

</android.support.constraint.ConstraintLayout>

答案 2 :(得分:0)

Buttons中设置LinearLayout

就像下面的代码一样

    <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <android.support.v7.widget.RecyclerView
        app:layout_constraintBottom_toBottomOf="parent"
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintBottom_toBottomOf="@+id/recycler_view">

        <Button
            android:id="@+id/btn_buy_more"
            android:layout_width="match_parent"
            android:layout_height="35dp"
            android:text="Buy More"
            app:layout_constraintBottom_toBottomOf="@id/recycler_view"/>

        <Button
            android:id="@+id/btn_checkout"
            android:layout_width="match_parent"
            android:layout_height="35dp"
            android:text="Checkout"
            app:layout_constraintBottom_toBottomOf="@id/btn_buy_more"/>

        <Button
            android:id="@+id/btn_logout"
            android:layout_width="match_parent"
            android:layout_height="35dp"
            android:text="Logout"
            app:layout_constraintBottom_toBottomOf="@id/btn_checkout"/>

    </LinearLayout>

</android.support.constraint.ConstraintLayout>

我希望它能正常工作。...