|
@@ -0,0 +1,59 @@
|
|
|
+<?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="35dp"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="5dp"
|
|
|
+ android:background="@drawable/button_shape"
|
|
|
+ >
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/item_icon"
|
|
|
+ android:layout_width="24dp"
|
|
|
+ android:layout_height="24dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginStart="7.5dp"
|
|
|
+ android:src="@drawable/settings_pulse"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_title"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_toEndOf="@+id/item_icon"
|
|
|
+ android:layout_marginStart="8dp"
|
|
|
+ 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:textColor="@color/white"
|
|
|
+ android:textSize="10sp"
|
|
|
+ tools:ignore="SmallSp" />
|
|
|
+
|
|
|
+ <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>
|