2019-07-24 11:27:29 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<merge style="@style/UiKit.ViewGroup"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<RelativeLayout android:id="@id/setting_container" android:background="?selectableItemBackground" android:padding="@dimen/uikit_spacing_large" style="@style/UiKit.ViewGroup.RelativeLayout">
|
2019-11-20 22:09:14 +00:00
|
|
|
<LinearLayout android:layout_centerVertical="true" android:layout_toStartOf="@id/setting_button" android:layout_alignParentStart="true" style="@style/UiKit.ViewGroup.LinearLayout">
|
2019-07-24 11:27:29 +00:00
|
|
|
<TextView android:id="@id/setting_label" style="@style/UiKit.TextView" />
|
|
|
|
<TextView android:id="@id/setting_subtext" android:layout_marginTop="5.0dip" style="@style/UiKit.TextView" />
|
|
|
|
</LinearLayout>
|
2020-01-07 23:39:47 +00:00
|
|
|
<com.google.android.material.checkbox.MaterialCheckBox android:id="@id/setting_button" android:clickable="false" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerVertical="true" android:layout_marginStart="@dimen/uikit_spacing_large" android:layout_alignParentEnd="true" android:buttonTint="?colorCompoundButton" />
|
2019-07-24 11:27:29 +00:00
|
|
|
</RelativeLayout>
|
|
|
|
</merge>
|