|
@@ -1,50 +1,70 @@
|
|
|
-<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<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="40dp">
|
|
|
-
|
|
|
- <RelativeLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_marginLeft="2dp"
|
|
|
- android:layout_marginRight="2dp"
|
|
|
- android:background="@drawable/button_shape"
|
|
|
- >
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/item_title"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginStart="12dp"
|
|
|
- android:fontFamily="Roboto"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:textColor="@color/white"
|
|
|
- android:textSize="13sp" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/item_title_detail"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_toStartOf="@+id/item_arrow"
|
|
|
- android:layout_marginEnd="8dp"
|
|
|
- android:fontFamily="Roboto"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:layout_alignParentEnd="true"
|
|
|
- android:textColor="@color/white"
|
|
|
- android:textSize="10sp"
|
|
|
- tools:ignore="RelativeOverlap" />
|
|
|
-
|
|
|
- <ImageView
|
|
|
- android:id="@+id/item_arrow"
|
|
|
- android:layout_width="6dp"
|
|
|
- android:layout_height="10dp"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:layout_alignParentEnd="true"
|
|
|
- android:layout_marginEnd="9.5dp"
|
|
|
- android:src="@drawable/icon_arrow"
|
|
|
- />
|
|
|
-
|
|
|
- </RelativeLayout>
|
|
|
-
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<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="40dp">
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_marginLeft="2dp"
|
|
|
+ android:layout_marginRight="2dp"
|
|
|
+ >
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_marginStart="12dp"
|
|
|
+ >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_title"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:fontFamily="Roboto"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textFontWeight="700"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_subtitle"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginBottom="5dp"
|
|
|
+ android:fontFamily="Roboto"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="12sp"
|
|
|
+ android:textFontWeight="400"
|
|
|
+ android:text="subtitle"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_detail"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_toStartOf="@+id/item_arrow"
|
|
|
+ android:layout_marginEnd="8dp"
|
|
|
+ android:fontFamily="Roboto"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="10sp"
|
|
|
+ tools:ignore="RelativeOverlap" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/item_arrow"
|
|
|
+ android:layout_width="6dp"
|
|
|
+ android:layout_height="10dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:layout_marginEnd="9.5dp"
|
|
|
+ android:src="@drawable/icon_arrow"
|
|
|
+ />
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
</LinearLayout>
|