画廊视图Gallery
幻灯片图片浏览器 1.布局 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:orientation="vertical" 6 tools:context=".AndroidGalleryActivity" > 7 8 <ImageSwitcher 9 android:id="@+id/imgswi" 10 android:layout_width="320dp" 11 android:layout_height="320dp" /> 12 13 <Gallery 14 android:id="@+id/gallery" 15 android:layout_width="match_pare...