zzz_sub_tab_item.xml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <RelativeLayout
  6. android:id="@+id/zzz_tab_parent"
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent">
  9. <TextView
  10. android:id="@+id/zzz_tab_text"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_centerInParent="true"
  14. android:maxLength="6"
  15. android:textColor="@color/zzz_sub_tab_text_color"
  16. android:textSize="@dimen/zzz_sub_tab_text_size"/>
  17. <View
  18. android:id="@+id/zzz_tab_line"
  19. android:layout_width="match_parent"
  20. android:layout_height="@dimen/zzz_sub_tab_line_height"
  21. android:layout_marginTop="@dimen/zzz_tab_line_margin_top"
  22. android:layout_alignParentBottom="true"
  23. android:background="@drawable/zzz_sub_tab_line_bg"/>
  24. </RelativeLayout>
  25. </RelativeLayout>