|
@@ -6,9 +6,7 @@
|
|
|
|
|
|
<RelativeLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="35dp"
|
|
|
- android:layout_marginLeft="5dp"
|
|
|
- android:layout_marginRight="5dp"
|
|
|
+ android:layout_height="40dp"
|
|
|
>
|
|
|
|
|
|
<ImageView
|
|
@@ -16,34 +14,35 @@
|
|
|
android:layout_width="24dp"
|
|
|
android:layout_height="24dp"
|
|
|
android:layout_centerVertical="true"
|
|
|
- android:layout_marginStart="7.5dp"
|
|
|
- android:src="@drawable/settings_pulse"
|
|
|
+ android:layout_marginStart="20dp"
|
|
|
/>
|
|
|
|
|
|
<LinearLayout
|
|
|
android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
android:orientation="vertical"
|
|
|
android:layout_toEndOf="@+id/item_icon"
|
|
|
- android:layout_marginStart="8dp"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
>
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/item_title"
|
|
|
- android:layout_width="wrap_content"
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_marginTop="5dp"
|
|
|
android:fontFamily="Roboto"
|
|
|
+ android:textAlignment="center"
|
|
|
android:textColor="@color/white"
|
|
|
android:textFontWeight="700"
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/item_subtitle"
|
|
|
- android:layout_width="wrap_content"
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_marginBottom="5dp"
|
|
|
android:fontFamily="Roboto"
|
|
|
+ android:textAlignment="center"
|
|
|
android:layout_centerVertical="true"
|
|
|
android:textColor="@color/white"
|
|
|
android:textSize="12sp"
|