您的位置:首页 > 移动开发 > Android开发

android常用控件二 gallery

2011-03-30 11:30 381 查看
gallery:



图片填充的方法与Spinner类似,也是使用setAdapter()方法。但是这个使用的是自定义的Adapter,并且这个Adapter要继承于BaseAdapter。

Gallery定义与数据填充及监听事件:

Gallery g = (Gallery) findViewById(R.id.mygallery);
/* 添加一ImageAdapter并设置给Gallery对象 */
g.setAdapter(new ImageAdapter(this));

/* 设置一个itemclickListener并Toast被点击图片的位置 */
g.setOnItemClickListener(new OnItemClickListener()
{
public void onItemClick
(AdapterView<?> parent, View v, int position, long id)
{
Toast.makeText
(EX04_10.this, getString(R.string.my_gallery_text_pre)
+ position+ getString(R.string.my_gallery_text_post),
Toast.LENGTH_SHORT).show();
}
});


继承于BaseAdapter的ImageAdapter类,可以作为内部类来实现:

public class ImageAdapter extends BaseAdapter
{
/*声明变量*/
int mGalleryItemBackground;
private Context mContext;

/*ImageAdapter的构造器*/
public ImageAdapter(Context c)
{
mContext = c;

/* 使用在res/values/attrs.xml中的<declare-styleable>定义
* 的Gallery属性.*/
TypedArray a = obtainStyledAttributes(R.styleable.Gallery);

/*取得Gallery属性的Index id*/
mGalleryItemBackground = a.getResourceId
(R.styleable.Gallery_android_galleryItemBackground, 0);

/*让对象的styleable属性能够反复使用*/
a.recycle();
}

/* 覆盖的方法getCount,返回图片数目 */
public int getCount()
{
return myImageIds.length;
}

/* 覆盖的方法getItemId,返回图像的数组id */
public Object getItem(int position)
{
return position;
}
public long getItemId(int position)
{
return position;
}

/* 覆盖的方法getView,返回一View对象 */
public View getView
(int position, View convertView, ViewGroup parent)
{
/*产生ImageView对象*/
ImageView i = new ImageView(mContext);
/*设置图片给imageView对象*/
i.setImageResource(myImageIds[position]);
/*重新设置图片的宽高*/
i.setScaleType(ImageView.ScaleType.FIT_XY);
/*重新设置Layout的宽高*/
i.setLayoutParams(new Gallery.LayoutParams(136, 88));
/*设置Gallery背景图*/
i.setBackgroundResource(mGalleryItemBackground);
/*返回imageView对象*/
return i;
}

/*建构一Integer array并取得预加载Drawable的图片id*/
private Integer[] myImageIds =
{
R.drawable.photo1,
R.drawable.photo2,
R.drawable.photo3,
R.drawable.photo4,
R.drawable.photo5,
R.drawable.photo6,
};
}


R.styleable.Gallery_android_galleryItemBackground定义于外部的attrs.xml文件中:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="Gallery">
<attr name="android:galleryItemBackground" />
</declare-styleable>
</resources>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: