37 lines
1.5 KiB
XML
37 lines
1.5 KiB
XML
<?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="match_parent">
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:id="@+id/ll_right_box"
|
|
android:background="#f0f0f2"
|
|
android:layout_width="@dimen/setting_right_box"
|
|
android:layout_height="match_parent">
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:id="@+id/iv_setting_back"
|
|
android:layout_width="@dimen/theme_navigation_size"
|
|
android:layout_height="@dimen/theme_navigation_size"
|
|
android:src="@drawable/setting_back_icon"/>
|
|
<TextView
|
|
android:textSize="@dimen/comm_txt_17sp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/setting_title"
|
|
android:layout_centerInParent="true"/>
|
|
</RelativeLayout>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rcv_setting_right"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
</LinearLayout>
|
|
<FrameLayout
|
|
android:id="@+id/rl_setting_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_toRightOf="@+id/ll_right_box"/>
|
|
</RelativeLayout>
|