自定义gallery,避免选中项总在中间的问题
最近做了一个小功能,实现类似gallery的效果,但需要选中项在第一个,且不希望拉到最前面会有空余空间,在尝试使用android自带的gallery未能达到效果的情况下,自己写了个简单但能满足功能的东东。首先分享一下对于gallery的使用。
首先面对的是不希望拉到最前面有空白,所以参考网上的例子,通过setselection设置选中一个较大的数字,当然,这里要求在adapter中设置getcount方法里返回int的最大值,以下是getview内的代码,cacheView是类里定义的一个缓存itemview的HashMap<Integer,View>对象,然后通过position%list.size()获取已经在缓存内的view,其中list就是数据源数据集合
convertView = cacheView.get(position%list.size());
if(convertView== null){
convertView = mInflater.inflate(layoutId, null);
ImageView iv =(ImageView) convertView.findViewById(R.id.image);
iv.setBackgroundResource(list.get(position%list.size()));
cacheView.put(position%list.size(), convertView);
}
return convertView;
这样做的效果就是一开始就处于满屏的,且左右拉会有循环显示的效果,但选中项仍然在中间,且拖拉结束时,会自动选中一个
鉴于以上不能满足需求,我尝试了继承gallery重写里面的onTouchEvent,onFling方法,可以通过MotionEvent.ACTION_UP以及onFling 直接return false;达到拖拉时不自动选中,但是项的单击事件也会无法使用,即OnItemClickListener无法触发,在来回纠结并尝试了很久后,还是放弃了
在网上看到有人提出一个使用ScrollView自己实现gallery的思路,于是便写了一个功能简单,但便于使用的代码,在此做一分享,希望给大家一些思路
public class MyGallery extends HorizontalScrollView {
public MyGallery(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MyGallery(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
private List<ImageView> imageViews =new ArrayList<ImageView>();//图片view对象,初始化后生成
private List<TextView> textViews =new ArrayList<TextView>();//文本view对象,初始化后生成
private Context mContext;//调用本view的activity
private int mWidth;//宽度onlayout里赋值
private int selectedItemIndex = -1;//选中的项下标
private int displayNum = 5;//要显示项的数量
private int defaultIndex = 0;//默认选中的下标
private int itemWidth;//每一项的宽度
private OnClickListener itemClickListener;//点击每项的事件,初始化传入,可以通过onclick中的view内的tag获得postion区分
private Handler handler;//用来处理选中滚动事件
private int inoutTime = 200;//放大缩小所耗时间
private float scale = 1.2f;//放大后的比例
private LayoutInflater mInflater;
private List<IWantType> typeList;//类别列表
private int adjust =-5;//调整移动位置
public MyGallery(Context context) {
super(context);
this.mContext = context;
}
/**
* 完成布局时根据宽度与显示的数量初始化item布局
*/
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
super.onLayout(changed, l, t, r, b);
if(this.mWidth != this.getWidth()){
this.mWidth = this.getWidth();
this.itemWidth = this.mWidth/this.displayNum;
initImages(itemClickListener);
}
}
/**
* 初始化
* @param context
* @param images
* @param itemClickListener
*/
public void init(Context context,List<IWantType> typeList,OnClickListener itemClickListener,int defaultIndex) {
this.typeList = typeList;
this.mContext = context;
this.mInflater = LayoutInflater.from(context);
this.defaultIndex = defaultIndex;
this.setVerticalScrollBarEnabled(false); //禁用垂直滚动
this.setHorizontalScrollBarEnabled(false); //禁用水平滚动
this.itemClickListener = itemClickListener;
this.handler =new Handler(){
public void handleMessage(Message msg) {
if(msg.arg1>msg.arg2){
int each = (msg.arg1-msg.arg2)/10;
if(msg.arg2+each<msg.arg1 && each>0){
scrollTo(msg.arg2+each+adjust, 0);
}else{
scrollTo(msg.arg1+adjust, 0);
}
Message message = new Message();
message.arg1 =msg.arg1;
if(each!=0){
&
补充:移动开发 , Android ,