Android UI學習之Gallery

來源:互聯網
上載者:User

標籤: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

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.