|
@@ -1,24 +1,35 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
- android:layout_height="50dp"
|
|
|
|
|
- android:gravity="center"
|
|
|
|
|
- android:orientation="horizontal">
|
|
|
|
|
|
|
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="50dp">
|
|
|
|
|
|
|
|
- <ImageView
|
|
|
|
|
- android:id="@+id/tabicon"
|
|
|
|
|
- android:layout_width="16dp"
|
|
|
|
|
- android:layout_height="16dp"
|
|
|
|
|
- android:layout_gravity="center"
|
|
|
|
|
- android:src="@drawable/selector_tab_my_money1" />
|
|
|
|
|
-
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:id="@+id/tabtext"
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:layout_marginStart="@dimen/content_padding_10"
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
android:gravity="center"
|
|
android:gravity="center"
|
|
|
- android:text="TAB"
|
|
|
|
|
- android:textColor="@color/selector_color_my_money_tab"
|
|
|
|
|
- android:textSize="13sp" />
|
|
|
|
|
-</LinearLayout>
|
|
|
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tabtext"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:text="TAB"
|
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
|
+ android:textSize="18sp" />
|
|
|
|
|
+
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:id="@+id/tab_line"
|
|
|
|
|
+ android:layout_width="1dp"
|
|
|
|
|
+ android:layout_height="20dp"
|
|
|
|
|
+ android:background="@color/white" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:id="@+id/tab_triangle"
|
|
|
|
|
+ android:layout_width="15dp"
|
|
|
|
|
+ android:layout_height="15dp"
|
|
|
|
|
+ android:background="@drawable/selector_tab_triangle"
|
|
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
|
|
+ android:layout_alignParentBottom="true"/>
|
|
|
|
|
+</RelativeLayout>
|