Listview не прокручивается в RecyclerView с использованием ConstraintLayout - PullRequest
1 голос
/ 28 мая 2020

У меня есть RecyclerView, внутри которого ListView. Мне нужно использовать ConstraintLayout, так как мне нужно правильно выровнять TextView и ListView для каждой строки RecyclerView. Но кажется, что просмотр списка не может прокручиваться, когда на экране слишком много контента.

recyclerview_layout. 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:layout_width="match_parent"
android:layout_height="match_parent">


<TextView
    android:id="@+id/time"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="16dp"
    android:textColor="#0E1C2B"
    android:textSize="17sp"
    app:layout_constraintBottom_toTopOf="@+id/recyclerview_list"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.498"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.333" />

<TextView
    android:id="@+id/textView4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="24dp"
    android:text="Date: "
    android:textColor="#0E1C2B"
    android:textSize="17sp"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.207"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<ListView
    android:id="@+id/recyclerview_list"
    android:layout_width="260dp"
    android:layout_height="wrap_content"
    android:layout_marginTop="8dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.43"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/textView4"
    app:layout_constraintVertical_bias="0.012" />

    </androidx.constraintlayout.widget.ConstraintLayout>

Вот скриншот. xml screenshot Окончательный результат, который мне нужен, показан ниже. Обе стрелки относятся к одной строке RecyclerView или ListView. frame


Изменить: РЕШЕНИЕ Необходимо добавить <LinearLayout/> вокруг элемента ListView.

Добавлены линии звездочек с разными

. Окончательный recyclerview_layout. xml:

<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:layout_width="match_parent"
android:layout_height="match_parent">

---------other code are the same------------

<LinearLayout
    android:layout_width="300dp"
    **android:layout_height="wrap_content"**
    **android:orientation="vertical"**
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.47"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/textView"
    app:layout_constraintVertical_bias="0.011">

    <ListView
        android:id="@+id/recyclerview_list"
        **android:layout_width="match_parent"**
        **android:layout_height="wrap_content"**
        tools:layout_editor_absoluteX="104dp"
        tools:layout_editor_absoluteY="59dp" />

</LinearLayout>

И мой окончательный снимок экрана для вашей справки ... (думаю, у немногих людей будет такая же проблема, как у меня, хххх) Более длинный разделитель для элемента RecyclerView. Более короткие - за ListView. final view

1 Ответ

1 голос
/ 28 мая 2020

Вы хотите использовать RecyclerView или ListView? Здесь я добавил RecyclerView с правильным ограничением. Иногда добавление неправильного ограничения может вызвать ошибку прокрутки.

Дайте мне знать, если вы хотите другое в приведенном ниже дизайне

enter image description here

    <?xml version="1.0" encoding="utf-8"?>
 
...