|
@@ -1,27 +1,19 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
>
|
|
|
|
|
|
- <FrameLayout
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_title"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="38dp"
|
|
|
- android:layout_gravity="center"
|
|
|
- android:layout_marginLeft="25dp"
|
|
|
- android:layout_marginRight="25dp"
|
|
|
- >
|
|
|
+ android:layout_height="45dp"
|
|
|
+ android:fontFamily="Roboto"
|
|
|
+ android:textStyle="bold"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="12sp"
|
|
|
+ android:textAlignment="center"
|
|
|
+ android:gravity="center"
|
|
|
+ />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/item_title"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="34dp"
|
|
|
- android:gravity="center"
|
|
|
- android:fontFamily="Roboto"
|
|
|
- android:textFontWeight="700"
|
|
|
- android:textColor="@color/white"
|
|
|
- android:textSize="12sp"
|
|
|
- />
|
|
|
- </FrameLayout>
|
|
|
-
|
|
|
-</LinearLayout>
|
|
|
+</RelativeLayout>
|