|
@@ -1,38 +1,42 @@
|
|
|
<?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="40dp">
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:paddingTop="2dp"
|
|
|
+ android:paddingBottom="2dp"
|
|
|
+ android:paddingStart="5dp"
|
|
|
+ android:paddingEnd="5dp"
|
|
|
+ >
|
|
|
|
|
|
<RelativeLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="40dp"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:background="@drawable/bg_gray"
|
|
|
>
|
|
|
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_title"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginStart="10dp"
|
|
|
+ android:fontFamily="Roboto"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="17sp" />
|
|
|
+
|
|
|
<CheckBox
|
|
|
android:id="@+id/item_checkbox"
|
|
|
- android:layout_width="28dp"
|
|
|
- android:layout_height="28dp"
|
|
|
- android:layout_marginStart="20dp"
|
|
|
+ android:layout_width="25dp"
|
|
|
+ android:layout_height="25dp"
|
|
|
android:layout_centerVertical="true"
|
|
|
- android:background="@drawable/xp_checkbox"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:layout_marginEnd="10dp"
|
|
|
+ android:background="@drawable/sk_checkbox"
|
|
|
android:clickable="false"
|
|
|
android:button="@null"
|
|
|
>
|
|
|
</CheckBox>
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/item_title"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_toEndOf="@id/item_checkbox"
|
|
|
- android:layout_marginStart="0dp"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:layout_alignParentEnd="true"
|
|
|
- android:textAlignment="center"
|
|
|
- android:fontFamily="Roboto"
|
|
|
- android:textColor="@color/white"
|
|
|
- android:textSize="13sp" />
|
|
|
-
|
|
|
</RelativeLayout>
|
|
|
|
|
|
</LinearLayout>
|