1.android:numColumns=」auto_fit」 //GridView的列數設置爲自動
2.android:columnWidth=」90dp " //每列的寬度,也就是Item的寬度
3.android:stretchMode=」columnWidth" //縮放與列寬大小同步
4.android:verticalSpacing=」10dp」 //兩行之間的邊距
5.android:horizontalSpacing=」10dp」 //兩列之間的邊距
6.android:cacheColorHint="#00000000" //去除拖動時默認的黑色背景
7.android:listSelector="#00000000" //去除選中時的yello底色
8.android:scrollbars="none" //隱藏GridView的滾動條
9.android:fadeScrollbars="true" //設置爲true就能夠實現滾動條的自動隱藏和顯示
10.android:fastScrollEnabled="true" //GridView出現快速滾動的按鈕(至少滾動4頁纔會顯示)
11.android:fadingEdge="none" //GridView衰落(褪去)邊緣顏色爲空,缺省值是vertical。(能夠理解爲上下邊緣的提示色)
12.android:fadingEdgeLength="10dip" //定義的衰落(褪去)邊緣的長度
13.android:stackFromBottom="true" //設置爲true時,你作好的列表就會顯示你列表的最下面
14.android:transcriptMode="alwaysScroll" //當你動態添加數據時,列表將自動往下滾動最新的條目能夠自動滾動到可視範圍內
15.android:drawSelectorOnTop="false" //點擊某條記錄不放,顏色會在記錄的後面成爲背景色,內容的文字可見(缺省爲false)android