fgt_find.xml 805 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/bg_gray"
  6. android:orientation="vertical">
  7. <View
  8. android:layout_width="match_parent"
  9. android:layout_height="0dp"
  10. android:layout_marginTop="24dp" />
  11. <include layout="@layout/title" />
  12. <android.support.design.widget.TabLayout
  13. android:id="@+id/indicator"
  14. style="@style/style_tab"
  15. android:layout_marginTop="7dp" />
  16. <android.support.v4.view.ViewPager
  17. android:id="@+id/pager"
  18. android:layout_width="match_parent"
  19. android:layout_height="0dip"
  20. android:layout_weight="1" />
  21. </LinearLayout>