標籤:gallery android
在生活就大家都會在手機上瀏覽圖片,然後會用手指從左至右滑動。其實這樣的效果就是藉助Gallery實現的。
接下來一一個簡單的例子介紹Gallery的使用:
public class GalleryActivty extends Activity {private static Gallery mGallery;private int[] images = {R.drawable.a, R.drawable.b,R.drawable.c, R.drawable.d,R.drawable.e, R.drawable.f,R.drawable.h};@Overrideprotected void onCreate(Bundle savedInstanceState) {// TODO Auto-generated method stubsuper.onCreate(savedInstanceState);setContentView(R.layout.activity_gallery);mGallery = (Gallery) findViewById(R.id.gallery);mGallery.setAdapter(new MyAdapter(this));mGallery.setSpacing(10);}class MyAdapter extends BaseAdapter{private Context context;public MyAdapter(Context context){this.context = context;}@Overridepublic int getCount() {// 擷取圖片資源的總數return images.length;}@Overridepublic Object getItem(int position) {// 獲得圖片當前位置return position;}@Overridepublic long getItemId(int position) {// 獲得當前位置的圖片IDreturn images[position];}@Overridepublic View getView(int position, View convertView, ViewGroup parent) {// 獲得當前圖片資源ImageView view = new ImageView(this.context);view.setImageResource(images[position]);view.setAdjustViewBounds(true);//設定圖片的大小view.setLayoutParams(new Gallery.LayoutParams(300, 300));//view.setPadding(15, 10, 15, 10);return view;}}}
布局檔案很簡單:
<Gallery android:id="@+id/gallery" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_centerVertical="true" />
運行效果如下:
總結: 一般Gallery和ImageSwitcher一起使用。 這樣會用更炫的效果。
著作權聲明:本文為博主原創文章,未經博主允許不得轉載。
Android UI學習之Gallery