Signal-Android/app/src/main/res/layout/recipient_preference_photo_rail.xml

18 lines
798 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
2023-02-11 15:35:01 -05:00
xmlns:tools="http://schemas.android.com/tools"
tools:viewBindingIgnore="true">
2019-06-05 15:47:14 -04:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/photo_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:nestedScrollingEnabled="false"
android:paddingStart="@dimen/dsl_settings_gutter"
android:paddingEnd="@dimen/dsl_settings_gutter"
android:scrollbars="none"
tools:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
tools:listitem="@layout/recipient_preference_photo_rail_item"
tools:orientation="horizontal" />
</merge>