zzz_main_tab_item.xml 1.2 KB

1234567891011121314151617181920212223242526272829
  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. android:paddingBottom="@dimen/zzz_main_tab_padding_bottom">
  6. <ImageView
  7. android:id="@+id/zzz_tab_icon"
  8. android:layout_width="@dimen/zzz_main_tab_icon_width"
  9. android:layout_height="@dimen/zzz_main_tab_icon_height"
  10. android:layout_centerHorizontal="true"
  11. android:layout_marginTop="@dimen/zzz_main_tab_icon_margin_top"
  12. android:scaleType="fitXY"
  13. android:src="@drawable/zzz_recommend_selector"/>
  14. <TextView
  15. android:id="@+id/zzz_tab_text"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_below="@id/zzz_tab_icon"
  19. android:layout_centerHorizontal="true"
  20. android:layout_marginTop="@dimen/zzz_main_tab_text_margin_top"
  21. android:ellipsize="none"
  22. android:maxLength="4"
  23. android:singleLine="true"
  24. android:textColor="@color/zzz_main_tab_text_color"
  25. android:textSize="@dimen/zzz_main_tab_text_size"/>
  26. </RelativeLayout>