我的ConstraintLayout里面有一个listview,我读它应该是自动滚动的,但是列表只是在底部截止,剩下更多的项目显示它不可滚动,我不知道我是否设置了一些属性错误或者我必须为listview添加一些东西来滚动?
这是我的代码
<?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"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/special_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:text="Today is:"
android:textSize="24sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:visibility="gone"
app:layout_constraintTop_toTopOf="parent"/>
<TextView
android:id="@+id/date_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:text="The date is:"
android:textSize="24sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/special_text_view"/>
<TextView
android:id="@+id/oc_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:text="The day of the omer is:"
android:visibility="gone"
android:textSize="24sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/date_text_view"/>
<ListView
android:id="@+id/zmanim_list_view"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="24dp"
android:layout_marginBottom="24dp"
app:layout_constraintTop_toBottomOf="@id/omer_chanukah_text_view"
app:layout_constraintBottom_toBottomOf="parent">
</ListView>
</android.support.constraint.ConstraintLayout>
由于
答案 0 :(得分:0)
您是否包含了整个布局?在您实际包含的内容中,TextView
具有以下属性:
app:layout_constraintTop_toBottomOf="parent"
当我运行具有此布局的应用程序时,不会导致任何视图出现在屏幕上。如果我改为
app:layout_constraintTop_toTopOf="parent"
然后我看到一切正常(ListView没有被剪裁)。
答案 1 :(得分:0)
我遇到了同样的问题,即ListView不在ConstraintLayout中滚动。对我来说,解决方案是将ListView设置为具有顶部和底部约束的 mail.close()
mail.logout()
。
示例
android:layout_height="0dp"