#android #android-recyclerview
#Android #android-recyclerview
Вопрос:
Приведенный выше код отлично работает на устройствах Android 8 и ниже, но он не прокручивается в Android 9, и даже текст над RecyclerView вообще не доступен для просмотра
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@ id/restaurentName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/drawable_margin"
android:textColor="@color/sidemenutext"
android:textSize="15sp" />
<TextView
android:id="@ id/wareHouseName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_margin="@dimen/drawable_margin"
android:paddingLeft="12dp"
android:paddingRight="12dp"
android:paddingBottom="4dp"
android:textColor="@color/sidemenutext"
android:textSize="15sp" />
<androidx.recyclerview.widget.RecyclerView
android:id="@ id/ordRecyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@ id/restaurentName" />
</RelativeLayout>
Комментарии:
1. Попробуйте сделать высоту вашего RecyclerView равной match_parent.
2. Установите высоту вашего
RelativeLayout
наmatch_parent
.