blob: 2c21c6483a68c90e3bab05b235c64e198897561e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/customTabLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tabLabel"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:textSize="13dp"
android:textColor="#ffffff"
android:gravity="center_horizontal"
android:background="#808080"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
|