14 lines
557 B
XML
14 lines
557 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
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:id="@+id/recyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:scrollIndicators="top|bottom"
|
|
android:scrollbars="vertical"
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
tools:ignore="UnusedAttribute" />
|