Android 組件Gallery和GridView樣本講解_Android

來源:互聯網
上載者:User

Android Gallery和GridView組件:

Gallery 畫廊

Gallery是一個內部元素可以水平滾動,並且可以把當前選擇的子項目定位在它中心的布局組件。

我們還是直接看看例子的運行效果。

下面上代碼,相關解釋都放在代碼裡了。

1、建立一個新項目 HelloGallery

2、拷貝wallpaper_0.jpg…wallpaper_9.jpg 10個圖片檔案到res/drawable目錄

3、res/layout/main.xml檔案的內容如下:

<?xml version="1.0" encoding="utf-8"?><framelayout android:layout_height="fill_parent" android:layout_width="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/FrameLayout01"><imageview android:layout_height="fill_parent" android:layout_width="fill_parent" android:id="@+id/ImageView01" android:src="@drawable/wallpaper_0"></imageview><gallery android:layout_height="wrap_content" android:layout_width="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/Gallery01" android:spacing="5dp"></gallery></framelayout>

其中我們使用FrameLayout來實現疊加效果,使用ImageView來顯示大圖,Gallery來展示畫廊,android:spacing="5dp" 屬性則是用來設定元素之間的間隔。

4、在res/values/目錄中建立一個attrs.xml內容如下:

<?xml version="1.0" encoding="UTF-8"?><resources>  <declare -styleable="" name="HelloGallery">    <attr name="android:galleryItemBackground">  </attr></declare></resources>

5、在MainHelloGallery.java中的內容如下:

package android.basic.lesson13;import android.app.Activity;import android.content.Context;import android.content.res.TypedArray;import android.os.Bundle;import android.view.View;import android.view.ViewGroup;import android.widget.AdapterView;import android.widget.AdapterView.OnItemClickListener;import android.widget.BaseAdapter;import android.widget.Gallery;import android.widget.ImageView;import android.widget.Toast;public class MainHelloGallery extends Activity {  /** Called when the activity is first created. */  @Override  public void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.main);    //定義UI組件    final ImageView iv= (ImageView)findViewById(R.id.ImageView01);    Gallery g = (Gallery) findViewById(R.id.Gallery01);    //設定圖片匹配器    g.setAdapter(new ImageAdapter(this));    //設定AdapterView點擊監聽器,Gallery是AdapterView的子類    g.setOnItemClickListener(new OnItemClickListener() {      @Override      public void onItemClick(AdapterView<?> parent, View view,          int position, long id) {        //顯示點擊的是第幾張圖片        Toast.makeText(MainHelloGallery.this, "" + position,            Toast.LENGTH_LONG).show();        //設定背景部分的ImageView顯示當前Item的圖片        iv.setImageResource(((ImageView)view).getId());      }    });  }  //定義繼承BaseAdapter的匹配器  public class ImageAdapter extends BaseAdapter {    //Item的修飾背景    int mGalleryItemBackground;    //內容物件    private Context mContext;    //圖片數組    private Integer[] mImageIds = { R.drawable.wallpaper_0,        R.drawable.wallpaper_1, R.drawable.wallpaper_2,        R.drawable.wallpaper_3, R.drawable.wallpaper_4,        R.drawable.wallpaper_5, R.drawable.wallpaper_6,        R.drawable.wallpaper_7, R.drawable.wallpaper_8,        R.drawable.wallpaper_9 };    //構造方法    public ImageAdapter(Context c){      mContext = c;      //讀取styleable資源    TypedArray a = obtainStyledAttributes(R.styleable.HelloGallery);    mGalleryItemBackground = a.getResourceId(      R.styleable.HelloGallery_android_galleryItemBackground, 0);    a.recycle();    }    //返回項目數量    @Override    public int getCount() {      return mImageIds.length;    }    //返回項目    @Override    public Object getItem(int position) {      return position;    }    //返回項目Id    @Override    public long getItemId(int position) {      return position;    }    //返回視圖    @Override    public View getView(int position, View convertView, ViewGroup parent) {      ImageView iv = new ImageView(mContext);      iv.setImageResource(mImageIds[position]);      //給產生的ImageView設定Id,不設定的話Id都是-1      iv.setId(mImageIds[position]);      iv.setLayoutParams(new Gallery.LayoutParams(120, 160));      iv.setScaleType(ImageView.ScaleType.FIT_XY);      iv.setBackgroundResource(mGalleryItemBackground);      return iv;    }  }}

我們點擊某一張圖片,會把該子項目的圖片顯示在放在後面一層的ImageView組件中。有興趣的同學可以瞭解一下AdapterView的繼承關係:

以上就是對Android Gallery 和 GridView 組件的介紹,後續繼續對相關知識補充,謝謝大家對本站的支援!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.