tysdkn_fragment_other.xml 1018 B

123456789101112131415161718192021222324252627282930
  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:orientation="vertical">
  6. <RelativeLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="48dp"
  9. android:background="#ffffff">
  10. <TextView
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_centerInParent="true"
  14. android:text="其他"
  15. android:textColor="#30B8FF"
  16. android:textSize="16sp" />
  17. </RelativeLayout>
  18. <GridView
  19. android:layout_marginTop="8dp"
  20. android:id="@+id/tysdkn_gv_other_menu"
  21. android:gravity="center"
  22. android:verticalSpacing="10dp"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:numColumns="3"
  26. />
  27. </LinearLayout>