【Android Demo】图片之网格视图(GridView)
1.介绍 就是GridView组件的应用!九宫格什么的都可以通过这个组件实现。 2.效果图 3.XML文件 <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <GridView android:id="@+id/gridview" android:layout_width="wrap_content" android:layout_height="wrap_content" android:numColumns="auto_fit" android:columnWidth="100sp" android:stretchMode="columnWidth" android:gravity="center" /> </FrameLay...








