activity_list.xml 882 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:background="@color/colorWhite">
  9. <com.xunao.effectdemo.DragGridView
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:listSelector="@android:color/transparent"
  13. android:cacheColorHint="@android:color/transparent"
  14. android:layout_margin="10dp"
  15. android:id="@+id/dgv"
  16. android:gravity="center"
  17. android:verticalSpacing="10dp"
  18. android:horizontalSpacing="10dp"
  19. android:stretchMode="columnWidth">
  20. </com.xunao.effectdemo.DragGridView>
  21. </RelativeLayout>