Android 怎么设置Gallery长按事件

 我来答
she584713272
2011-12-30 · TA获得超过162个赞
知道小有建树答主
回答量:103
采纳率:0%
帮助的人:126万
展开全部
gallery.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {

@Override
public boolean onItemLongClick(AdapterView<?> arg0, View arg1,
int arg2, long arg3) {
// TODO Auto-generated method stub
//写操作代码
return false;
}

});
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
txy4349716
2011-12-29 · 超过20用户采纳过TA的回答
知道答主
回答量:41
采纳率:0%
帮助的人:49.3万
展开全部
Gallery.setOnItemLongClickListener(AdapterView.OnItemLongClickListener listener)
如果是学开发,建议多看Android文档。
追问
能不能详细一点啊  光这么写就报错了
追答
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemLongClickListener;
import android.widget.BaseAdapter;
import android.widget.Gallery;
import android.widget.ImageView;
import android.widget.Toast;

public class GalleryDemo extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.test);
Gallery g = (Gallery) findViewById(R.id.grellyDemo);
ImageAdapter imageAdapter = new ImageAdapter(this);
g.setAdapter(imageAdapter);
g.setOnItemLongClickListener(new OnItemLongClickListener() {

@Override
public boolean onItemLongClick(AdapterView adapter, View v,
int position, long rowid) {
Toast.makeText(GalleryDemo.this, "------------->" + position,
Toast.LENGTH_LONG).show();//这里写你自己的长按时间处理。
return false;
}

});
}

public class ImageAdapter extends BaseAdapter {
private Context mContext;

private Integer[] mImageIds = { R.drawable.color_00,
R.drawable.color_01, R.drawable.color_02, R.drawable.color_03,
R.drawable.color_04, R.drawable.color_05, R.drawable.color_06,
R.drawable.color_07 };

public ImageAdapter(Context c) {
mContext = c;
}

public int getCount() {
return mImageIds.length;
}

public Object getItem(int position) {
return position;
}

public long getItemId(int position) {
return position;
}

public View getView(int position, View convertView, ViewGroup parent) {
ImageView i = new ImageView(mContext);

i.setImageResource(mImageIds[position]);
i.setScaleType(ImageView.ScaleType.FIT_XY);
i.setLayoutParams(new Gallery.LayoutParams(136, 88));

return i;
}
}
}

这个你运行就知道了。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式