Android入門第八篇之GridView(九宮圖)
編輯:初級開發
GridView更是實現九宮圖的首選!本文就是介紹如何使用GridView實現九宮圖。GridVIEw的用法很多,網上介紹最多的方法就是自己實現一個ImageAdapter繼承BaseAdapter,再供GridView使用,類似這種的方法本文不再重復,本文介紹的GridView用法跟前文ListVIEw的極其類似。 本文需要添加/修改3個文件:main.xml、night_item.XML、Java源代碼。 main.XML源代碼如下,本身是個GirdVIEw,用於裝載Item:
vIEw plaincopy to clipboardprint?
<?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很類似:
vIEw plaincopy to clipboardprint?
<?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源代碼很類似,不過多了“選中”的事件處理:
vIEw plaincopy to clipboardprint?
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);//添加圖像資源的ID
map.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=arg3
HashMap<String, Object> item=(HashMap<String, Object>) arg0.getItemAtPosition(arg2);
//顯示所選Item的ItemText
setTitle((String)item.get("ItemText"));
}
}
本文來自http://blog.csdn.Net/xyz_lmn/archive/2009/11/30/4908632.ASPx
- 上一頁:Android 由圖片資源ID獲取圖片的文件名
- 下一頁:Android-Intent和PendingIntent的關系