我正在尝试创建带有按钮的视图以及带有该按钮下的列表的fragemtn。问题是列表从按钮的顶部而不是底部开始,它看起来像这样:
布局代码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".activities.BluetoothActivity">
<Button
android:text="@string/scan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/BluetoothScanButton"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="8dp"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginStart="8dp"
android:layout_marginTop="40dp"
app:layout_constraintTop_toTopOf="parent"/>
<fragment
android:id="@+id/BluetoothDevicesFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:name="com.tatara.taffico.DeviceListFragment"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="8dp"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginStart="8dp"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginTop="8dp"
app:layout_constraintTop_toBottomOf="@+id/BluetoothScanButton"/>
</android.support.constraint.ConstraintLayout>
有人可以帮我修复它吗?
答案 0 :(得分:2)
您应添加 android:layout_height="0dp"
片段 部分。
<fragment
android:id="@+id/BluetoothDevicesFragment"
android:layout_width="match_parent"
android:layout_height="0dp"
您还可以将小部件的一个尺寸定义为另一尺寸的比例 一。为此,您至少需要约束一个 尺寸设置为0dp(即MATCH_CONSTRAINT)。
答案 1 :(得分:0)
我相信您在按钮中缺少app:layout_constraintBottom_toTopOf="@id/BluetoothDevicesFragment"
。