Android的Gallery控件是個很不錯的看圖控件,大大減輕了開發者對於看圖功能的開發,並且效果也比較美觀。本文介紹Gallery的用法,用反射機制來動態讀取資源中的圖片。html
本文的效果圖:java
main.xml源碼:android
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- <Gallery android:id="@+id/gallery" android:layout_height="fill_parent" android:layout_width="fill_parent"></Gallery>
- </LinearLayout>
程序源碼:app