20 lines
719 B
XML
20 lines
719 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/content_settings"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingBottom="@dimen/custom_margin"
|
|
android:paddingLeft="@dimen/custom_margin"
|
|
android:paddingRight="@dimen/custom_margin"
|
|
android:paddingTop="@dimen/custom_margin"
|
|
tools:showIn="@layout/activity_settings">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rec_settings"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
</RelativeLayout>
|