mirror of
https://github.com/Aviortheking/Neo-Store.git
synced 2025-05-27 19:19:55 +00:00
27 lines
925 B
XML
27 lines
925 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="54dp"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_weight="1"
|
|
android:singleLine="true"
|
|
android:textColor="?android:attr/textColor"
|
|
android:textSize="16sp" />
|
|
|
|
<com.google.android.material.switchmaterial.SwitchMaterial
|
|
android:id="@+id/enabled"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:paddingStart="12dp"
|
|
android:paddingEnd="12dp" />
|
|
|
|
</LinearLayout>
|