如何在ListView中使用约束布局

时间:2019-07-08 09:45:21

标签: java android layout android-constraintlayout

我一直在使用线性布局作为列表视图,如果我的数据仅像 enter image description here 但是,当我确实想为ConstraintLayout格式化数据时,它需要整个页面才能滚动,这与线性布局不同。 enter image description here

示例代码  enable_if<false, uint64_t>

android.support.constraint.ConstraintLayout

1 个答案:

答案 0 :(得分:0)

在使用约束布局时,请确保为视图赋予正确的约束。如我所见,您将给定的bottom_to_bottomOf =“ parent”减半,使该视图获得父视图的完整高度。

只需从您的视图中删除app:layout_constraintBottom_toBottomOf =“ parent”即可。

您需要为任何视图提供至少三个约束。检查这是否工作正常?

 <?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="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto">

<TextView
    android:id="@+id/textViewName"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginBottom="8dp"
    android:text="Name"
    android:textAppearance="@style/TextAppearance.AppCompat.Large"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.019"
    app:layout_constraintStart_toEndOf="@+id/textView7"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.0" />

<TextView
    android:id="@+id/textViewNumber"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="312dp"
    android:layout_marginBottom="668dp"
    android:text="Number"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.0"
    app:layout_constraintStart_toEndOf="@+id/textView11"
    app:layout_constraintTop_toBottomOf="@+id/textViewName"
    app:layout_constraintVertical_bias="0.0" />

<TextView
    android:id="@+id/textView7"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginBottom="8dp"
    android:text="July"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.0"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.0" />

为了更好地了解约束布局,可以使用以下参考:https://medium.com/@loutry/guide-to-constraintlayout-407cd87bc013

此外,您无需编写

    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginBottom="8dp"

您可以使用android:layout_margin =“ 8dp”覆盖上述四个边距。