activity_grid_select.xml 645 B

1234567891011121314151617
  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. <GridView
  6. android:id="@+id/gv_topic"
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"
  9. android:background="@color/white"
  10. android:horizontalSpacing="15dp"
  11. android:numColumns="2"
  12. android:paddingLeft="15dp"
  13. android:paddingRight="15dp"
  14. android:paddingTop="5dp"
  15. android:scrollbars="none"
  16. android:verticalSpacing="10dp" />
  17. </RelativeLayout>