You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
2.4 KiB

3 years ago
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="100dp"
3 years ago
android:gravity="center">
3 years ago
<LinearLayout
android:layout_width="0dp"
3 years ago
android:layout_height="match_parent"
3 years ago
android:layout_weight="1"
3 years ago
android:id="@+id/id_index"
3 years ago
android:gravity="center"
android:orientation="vertical">
<ImageButton
3 years ago
android:id="@+id/id_tab_index_img"
3 years ago
android:clickable="false"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/index"
android:background="#00000000"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"
android:text="首页"/>
</LinearLayout>
<LinearLayout
android:id="@+id/id_tab_mission"
android:layout_width="0dp"
3 years ago
android:layout_height="match_parent"
3 years ago
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical">
<ImageButton
android:id="@+id/id_tab_mission_img"
android:clickable="false"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/mission"
android:background="#00000000"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"
android:text="个人任务"/>
</LinearLayout>
<LinearLayout
android:id="@+id/id_tab_mine"
android:layout_width="0dp"
3 years ago
android:layout_height="match_parent"
3 years ago
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical">
<ImageButton
android:id="@+id/id_tab_mine_img"
android:clickable="false"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/mine"
android:background="#00000000"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"
android:text="我的"/>
</LinearLayout>
</LinearLayout>