Final Version

This commit is contained in:
h4h13 2018-11-23 22:03:04 +05:30
parent 05b41fa07a
commit 4de14fcc4a
13314 changed files with 577747 additions and 744 deletions

View file

@ -0,0 +1,39 @@
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?selectableItemBackground"
android:descendantFocusability="blocksDescendants"
android:minHeight="@dimen/md_listitem_height"
android:orientation="horizontal"
android:paddingEnd="@dimen/md_dialog_frame_margin"
android:paddingLeft="@dimen/md_dialog_frame_margin"
android:paddingRight="@dimen/md_dialog_frame_margin"
android:paddingStart="@dimen/md_dialog_frame_margin"
tools:gravity="start|center_vertical">
<TextView
android:id="@+id/md_title"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:paddingBottom="@dimen/md_listitem_vertical_margin_choice"
android:paddingEnd="@dimen/md_listitem_control_margin"
android:paddingRight="@dimen/md_listitem_control_margin"
android:paddingTop="@dimen/md_listitem_vertical_margin_choice"
android:textSize="@dimen/md_listitem_textsize"
tools:ignore="RtlSymmetry"
tools:text="Item"/>
<androidx.appcompat.widget.AppCompatCheckBox
android:id="@+id/md_control"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@null"
android:clickable="false"
android:focusable="false"
android:gravity="center_vertical"
android:minHeight="@dimen/md_listitem_height"/>
</LinearLayout>

View file

@ -0,0 +1,39 @@
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?selectableItemBackground"
android:descendantFocusability="blocksDescendants"
android:minHeight="@dimen/md_listitem_height"
android:orientation="horizontal"
android:paddingEnd="@dimen/md_dialog_frame_margin"
android:paddingLeft="@dimen/md_dialog_frame_margin"
android:paddingRight="@dimen/md_dialog_frame_margin"
android:paddingStart="@dimen/md_dialog_frame_margin"
tools:gravity="start|center_vertical">
<TextView
android:id="@+id/md_title"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:paddingBottom="@dimen/md_listitem_vertical_margin_choice"
android:paddingEnd="@dimen/md_listitem_control_margin"
android:paddingRight="@dimen/md_listitem_control_margin"
android:paddingTop="@dimen/md_listitem_vertical_margin_choice"
android:textSize="@dimen/md_listitem_textsize"
tools:ignore="RtlSymmetry"
tools:text="Item"/>
<androidx.appcompat.widget.AppCompatRadioButton
android:id="@+id/md_control"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@null"
android:clickable="false"
android:focusable="false"
android:gravity="center_vertical"
android:minHeight="@dimen/md_listitem_height"/>
</LinearLayout>