| <?xml version="1.0" encoding="utf-8"?> | 
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | 
|     xmlns:app="http://schemas.android.com/apk/res-auto" | 
|     xmlns:tools="http://schemas.android.com/tools" | 
|     android:layout_width="match_parent" | 
|     android:layout_height="match_parent" | 
|     android:background="#ffffff" | 
|     tools:context="com.dayu.pipirrapp.activity.MainActivity"> | 
|   | 
|   | 
|     <com.dayu.pipirrapp.view.MyViewPager | 
|         android:id="@+id/viewPager" | 
|         android:layout_width="match_parent" | 
|         android:layout_height="match_parent" | 
|         android:layout_above="@id/tabLayout" /> | 
|   | 
|   | 
|     <com.google.android.material.tabs.TabLayout | 
|         android:id="@+id/tabLayout" | 
|         android:layout_width="match_parent" | 
|         android:layout_height="wrap_content" | 
|         android:layout_alignParentBottom="true" | 
|         android:background="?attr/colorPrimary" | 
|         app:tabGravity="fill" | 
|         app:tabIndicatorColor="#FFC107" | 
|         app:tabMode="fixed" | 
|         app:tabSelectedTextColor="#FFC107" | 
|         app:tabTextColor="#000000"> | 
|   | 
| <!--        <com.google.android.material.tabs.TabItem--> | 
| <!--            android:layout_width="match_parent"--> | 
| <!--            android:layout_height="match_parent"--> | 
| <!--            android:text="首页" />--> | 
|   | 
| <!--        <com.google.android.material.tabs.TabItem--> | 
| <!--            android:layout_width="match_parent"--> | 
| <!--            android:layout_height="match_parent"--> | 
| <!--            android:text="地图" />--> | 
|   | 
| <!--        <com.google.android.material.tabs.TabItem--> | 
| <!--            android:layout_width="match_parent"--> | 
| <!--            android:layout_height="match_parent"--> | 
| <!--            android:text="我的" />--> | 
|     </com.google.android.material.tabs.TabLayout> | 
|   | 
| </RelativeLayout> |