2018-06-07 22:54:27 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/plugin_enabled_exclusive"
|
2018-06-08 20:05:33 +02:00
|
|
|
android:saveEnabled="false"
|
2018-06-07 22:54:27 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="16dp" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/plugin_enabled_inclusive"
|
2018-06-08 20:05:33 +02:00
|
|
|
android:saveEnabled="false"
|
2018-06-07 22:54:27 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="16dp" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="12dp"
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2020-12-07 18:51:16 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/plugin_icon"
|
|
|
|
android:layout_width="36dp"
|
|
|
|
android:layout_height="36dp" />
|
|
|
|
|
2018-06-07 22:54:27 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/plugin_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="#FFFFFF"
|
|
|
|
android:textSize="16sp"
|
|
|
|
tools:text="Plugin name" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/plugin_description"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="#FFFFFF"
|
|
|
|
android:textSize="12sp"
|
|
|
|
tools:text="A super exquisite plugin description" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/plugin_preferences"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
2020-10-19 19:24:33 +02:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2018-06-07 22:54:27 +02:00
|
|
|
app:srcCompat="@drawable/ic_settings" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/plugin_visibility"
|
2018-06-08 20:05:33 +02:00
|
|
|
android:saveEnabled="false"
|
2018-06-07 22:54:27 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|