【问题标题】:Bottom Sheet Behaviour in Constraint Layout约束布局中的底页行为
【发布时间】:2019-11-15 13:48:30
【问题描述】:

我有一个简单的应用程序,我正在尝试添加底部工作表行为。我想保留约束布局,但我也想获得底部工作表行为。我不想要协调器布局和底页对话框。

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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/layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/btn"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:enabled="false"
        android:onClick="btn"
        android:text="@string/btn"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <include
        layout="@layout/activity_shop"/>

</androidx.constraintlayout.widget.ConstraintLayout>

activity_shop.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:id="@+id/shop"
    android:layout_height="match_parent"
    android:layout_gravity="bottom"
    app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
    app:behavior_hideable="false"
    app:behavior_peekHeight="48dp">

    <ImageView
        android:id="@+id/arrow"
        android:layout_width="match_parent"
        android:padding="0dp"
        android:layout_height="wrap_content"
        android:contentDescription="@string/arrow"
        app:srcCompat="@drawable/baseline_keyboard_arrow_up_white_48dp" />
    <Button
        android:id="@+id/button2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Button" />
</LinearLayout>

我需要改变什么才能让这个东西正常工作?

【问题讨论】:

标签: android xml android-layout bottom-sheet


【解决方案1】:

对于使用这样的使用层次结构来使用约束布局:

<CoordinatorLayout>

    // *ViewGroup containing your fixed screen*
      <Linear/Relative/Constraint Layout>

      </Linear/Relative/Constraint Layout>

    // *ViewGroup containing your bottom sheet*
      <ConstraintLayout
        app:behavior_hideable="false"
        app:behavior_peekHeight="90dp"
        app:layout_behavior="android.support.design.widget.BottomSheetBehavior" >

       </Constraintlayout>

</CoordinatorLayout>

【讨论】:

    【解决方案2】:

    只需添加

    app:layout_constraintBottom_toBottomOf="parent"
    

    给你 activity_shop.xml

    并将其高度更改为wrap_content

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2016-10-22
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-09-25
      • 1970-01-01
      • 1970-01-01
      • 2018-12-12
      相关资源
      最近更新 更多