標籤:
本文來自http://blog.csdn.net/hellogv/
GridView跟ListView都是比較經常使用的多控制項布局,而GridView更是實現九宮圖的首選!本文就是介紹怎樣使用GridView實現九宮圖。GridView的使用方法非常多,網上介紹最多的方法就是自己實現一個ImageAdapter繼承BaseAdapter,再供GridView使用,相似這樣的的方法本文不再反覆,本文介紹的GridView使用方法跟前文ListView的極其相似。。。。也算是我偷懶一下,嘻嘻嘻嘻。。。。
先來貼出本文代碼執行的結果:
本文須要加入/改動3個檔案:main.xml、night_item.xml、JAVA源碼。
main.xml源碼例如以下,本身是個GirdView,用於裝載Item:
<?xml version="1.0" encoding="utf-8"?><GridView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/gridview" android:layout_width="fill_parent" android:layout_height="fill_parent" android:numColumns="auto_fit" android:verticalSpacing="10dp" android:horizontalSpacing="10dp" android:columnWidth="90dp" android:stretchMode="columnWidth" android:gravity="center"/>
介紹一下裡面的某些屬性:
android:numColumns="auto_fit" ,GridView的列數設定為自己主動
android:columnWidth="90dp",每列的寬度,也就是Item的寬度
android:stretchMode="columnWidth",縮放與列寬大小同步
android:verticalSpacing="10dp",兩行之間的邊距,如:行一(NO.0~NO.2)與行二(NO.3~NO.5)間距為10dp
android:horizontalSpacing="10dp",兩列之間的邊距。
接下來介紹night_item.xml,這個XML跟前面ListView的ImageItem.xml非常相似:
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="wrap_content" android:paddingBottom="4dip" android:layout_width="fill_parent"> <ImageView android:layout_height="wrap_content" android:id="@+id/ItemImage" android:layout_width="wrap_content" android:layout_centerHorizontal="true"> </ImageView> <TextView android:layout_width="wrap_content" android:layout_below="@+id/ItemImage" android:layout_height="wrap_content" android:text="TextView01" android:layout_centerHorizontal="true" android:id="@+id/ItemText"> </TextView></RelativeLayout>
最後就是JAVA的源碼了,也跟前面的ListView的JAVA源碼非常相似,只是多了“選中”的事件處理:
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); GridView gridview = (GridView) findViewById(R.id.gridview); //產生動態數組,而且轉入資料 ArrayList<HashMap<String, Object>> lstImageItem = new ArrayList<HashMap<String, Object>>(); for(int i=0;i<10;i++) { HashMap<String, Object> map = new HashMap<String, Object>(); map.put("ItemImage", R.drawable.icon);//加入映像資源的IDmap.put("ItemText", "NO."+String.valueOf(i));//按序號做ItemText lstImageItem.add(map); } //產生適配器的ImageItem <====> 動態數組的元素,兩者一一相應 SimpleAdapter saImageItems = new SimpleAdapter(this, //沒什麼解釋 lstImageItem,//資料來源 R.layout.night_item,//night_item的XML實現 //動態數組與ImageItem相應的子項 new String[] {"ItemImage","ItemText"}, //ImageItem的XML檔案中面的一個ImageView,兩個TextView ID new int[] {R.id.ItemImage,R.id.ItemText}); //加入而且顯示 gridview.setAdapter(saImageItems); //加入訊息處理 gridview.setOnItemClickListener(new ItemClickListener()); } //當AdapterView被單擊(觸控螢幕或者鍵盤),則返回的Item單擊事件 class ItemClickListener implements OnItemClickListener {public void onItemClick(AdapterView<?> arg0,//The AdapterView where the click happened View arg1,//The view within the AdapterView that was clicked int arg2,//The position of the view in the adapter long arg3//The row id of the item that was clicked ) {//在本例中arg2=arg3HashMap<String, Object> item=(HashMap<String, Object>) arg0.getItemAtPosition(arg2);//顯示所選Item的ItemTextsetTitle((String)item.get("ItemText"));} }
Android入門第八篇之GridView(九宮圖)