82 lines
2.8 KiB
XML
82 lines
2.8 KiB
XML
<?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"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="6dp"
|
|
android:saveEnabled="false" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/plugin_enabled_inclusive"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="6dp"
|
|
android:saveEnabled="false" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/plugin_icon"
|
|
android:layout_width="36dp"
|
|
android:layout_height="36dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginEnd="8dp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/plugin_icon2"
|
|
android:layout_width="36dp"
|
|
android:layout_height="36dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginEnd="8dp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="12dp"
|
|
android:layout_marginBottom="12dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/plugin_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:textSize="16sp"
|
|
tools:text="Plugin name" />
|
|
|
|
<TextView
|
|
android:id="@+id/plugin_description"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="12sp"
|
|
tools:text="A super exquisite plugin description" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageButton
|
|
android:id="@+id/plugin_preferences"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
app:srcCompat="@drawable/ic_settings" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/plugin_visibility"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:saveEnabled="false" />
|
|
</LinearLayout> |