2017-01-26 19:38:53 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-02-12 21:58:05 +00:00
|
|
|
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-12-30 14:15:00 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2017-01-26 19:38:53 +00:00
|
|
|
|
2018-12-30 14:15:00 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:paddingEnd="8dp"
|
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
|
2017-01-26 19:38:53 +00:00
|
|
|
|
2018-12-30 14:15:00 +00:00
|
|
|
</HorizontalScrollView>
|