我在ConstraintLayout中定义了一个ListView:
<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">
<TextView
android:id="@+id/lblTitlePlan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="title"
android:textStyle="normal"
android:textSize="12dp"
android:padding="5dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"
/>
<RelativeLayout android:id="@+id/layoutTopContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/background_light"
android:elevation="5dp"
android:paddingBottom="10dp"
android:paddingTop="5dp"
app:layout_constraintTop_toBottomOf="@id/lblTitlePlan"
>
...
</RelativeLayout>
<ListView
android:id="@+id/listContainers"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:divider="@null"
android:dividerHeight="0dp"
android:paddingTop="80dp"
android:paddingBottom="100dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/layoutTopContainer"/>
</android.support.constraint.ConstraintLayout>
问题是当ListView中只显示几个项目时,它们是垂直居中的。我希望它们位于listView的顶部。 我认为问题来自似乎也适用于项目的约束(layout_constraintBottom_toBottomOf和layout_constraintTop_toBottomOf);因为如果我删除它们,那么这些项目就在顶部(但是我的列表视图位置不好)。
我怎么能解决这个问题?
答案 0 :(得分:2)
设置layout_height="0dp"
,这会将其设置为与约束匹配。
答案 1 :(得分:0)
尝试以下解决方案:
<ListView
android:id="@+id/listContainers"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:divider="@null"
android:dividerHeight="0dp"
android:paddingTop="8dp"
android:paddingBottom="16dp"
app:layout_constraintTop_toBottomOf="@+id/layoutTopContainer"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintVertical_bias="0"/>
答案 2 :(得分:0)
Do something like below, It work for me
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:divider="@android:color/transparent"
android:dividerHeight="5dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/topView"
app:layout_constraintVertical_bias="0" />