В представлении Recycler список элементов не отображается, когда layout_height = "match_constraint" в макете Constraint - PullRequest
0 голосов
/ 14 октября 2018

Я хочу создать пользовательский интерфейс, например: this is what I want, для которого я использую представление рециркулятора в макете ограничений.Но проблема в том, что когда я устанавливаю layout_height = "match_constraint" из recyclerView, тогда он не показывает никакого списка, а когда я устанавливаю layout_height = "wrap_content", тогда список выходит за границы и не прокручивается, а когда я устанавливаю его на фиксированныйдлина, то он не заполняет оставшийся экран по вертикали.и это показано так: when layout_height =

Вот как это ничего не показывает, когда layout_height = "match_constraint":

layout_height =

Вот мой код xml:

<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".searchResultListFragment">


    <ImageView
        android:id="@+id/thumbnail_img"
        android:layout_width="0dp"
        android:layout_height="150dp"
        android:scaleType="fitXY"
        android:src="@drawable/shopping_mart_transparent"
        app:layout_constraintBottom_toTopOf="@id/search_result_recycler_view"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/tv_search_result_msg"
        style="@style/search_result_msg_style"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="16dp"
        android:layout_marginLeft="16dp"
        android:layout_marginStart="16dp"
        android:text="Attraction Points in Naran"
        app:layout_constraintBottom_toBottomOf="@id/thumbnail_img"
        app:layout_constraintStart_toStartOf="parent" />

    <TextView
        android:id="@+id/tv_search_result_count"
        style="@style/search_result_count_style"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="22dp"
        android:layout_marginEnd="16dp"
        android:layout_marginRight="16dp"
        android:text="3 Results"
        app:layout_constraintBottom_toBottomOf="@id/thumbnail_img"
        app:layout_constraintEnd_toEndOf="parent" />

    <android.support.v7.widget.RecyclerView
        android:id="@+id/search_result_recycler_view"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginBottom="8dp"
        android:layout_marginLeft="16dp"
        android:layout_marginStart="16dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@id/thumbnail_img" />
</android.support.constraint.ConstraintLayout>

Ответы [ 2 ]

0 голосов
/ 14 октября 2018

Так как при поиске я не смог найти решения этой проблемы.Так что я придумал собственное решение, заменив макет ограничения RelativeLayout.Хотя это идеальное решение, но именно так я решил проблему, с которой столкнулся.

Вот код XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    tools:context=".searchResultListFragment"
    android:orientation="vertical">

    <android.support.constraint.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="150dp"
        android:layout_weight="0">
        <ImageView
            android:id="@+id/thumbnail_img"
            android:layout_width="0dp"
            android:layout_height="150dp"
            android:scaleType="fitXY"
            android:src="@drawable/shopping_mart_transparent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.0"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

        <TextView
            android:id="@+id/tv_search_result_msg"
            style="@style/search_result_msg_style"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="16dp"
            android:layout_marginLeft="16dp"
            android:layout_marginStart="16dp"
            android:text="Attraction Points in Naran"
            app:layout_constraintBottom_toBottomOf="@id/thumbnail_img"
            app:layout_constraintStart_toStartOf="parent" />

        <TextView
            android:id="@+id/tv_search_result_count"
            style="@style/search_result_count_style"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="22dp"
            android:layout_marginEnd="16dp"
            android:layout_marginRight="16dp"
            android:text="3 Results"
            app:layout_constraintBottom_toBottomOf="@id/thumbnail_img"
            app:layout_constraintEnd_toEndOf="parent" />
    </android.support.constraint.ConstraintLayout>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/search_result_recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>
0 голосов
/ 14 октября 2018

Это потому, что в самой последней строке вашего RecyclerView xml вы добавили неправильный символ

Измените:

app:layout_constraintTop_toBottomOf="@+id/thumbnail_img"

на:

app:layout_constraintTop_toBottomOf="@id/thumbnail_img"

То же самое длядругие виды (ImageView и 2 TextView), добавление + означает, что вы хотите добавить ссылку, чтобы не ссылаться на эту ссылку.

Плюс вам не нужна эта строка в ImageView:

app:layout_constraintBottom_toTopOf="@+id/search_result_recycler_view"
...