49 lines
1.7 KiB
XML
49 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/ll"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="45dp"
|
|
android:layout_marginTop="@dimen/mystatusbar"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerHorizontal="true"
|
|
android:gravity="center"
|
|
android:textSize="16sp"
|
|
android:id="@+id/tv_title"
|
|
android:text="我的点赞"
|
|
android:textColor="@color/white" />
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
<android.support.design.widget.TabLayout
|
|
android:id="@+id/tb"
|
|
android:background="@color/white"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:tabIndicatorColor="#FE5200"
|
|
app:tabSelectedTextColor="#FE5200"
|
|
app:tabIndicatorFullWidth="false"
|
|
app:tabTextColor="#000"
|
|
android:gravity="center_horizontal" />
|
|
<android.support.v4.view.ViewPager
|
|
android:id="@+id/fl"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white">
|
|
|
|
</android.support.v4.view.ViewPager>
|
|
|
|
</LinearLayout>
|
|
</layout> |