22 lines
778 B
XML
22 lines
778 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:longClickable="true"
|
|
android:paddingVertical="5dp">
|
|
<TextView
|
|
android:id="@+id/config_name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="1"
|
|
android:paddingHorizontal="5dp"
|
|
android:textSize="16sp" />
|
|
|
|
<com.google.android.material.switchmaterial.SwitchMaterial
|
|
android:id="@+id/config_switch"
|
|
android:layout_width="50dp"
|
|
android:layout_height="48dp" />
|
|
</LinearLayout> |