我的第一个活动在网格中显示图像,并在每个图像上实现onclick方法,这将发送信息并在点击时打开第二个活动。
我想构建一个图像适配器来操纵第二个活动中的图像。如何从图像适配器内部提取所单击图像的图像ID,告诉适配器我希望它与第一个活动中单击的图像一起使用?
启动FullSize
活动的代码:
public void onItemClick(AdapterView<?> parent, View v, int position, long id){
Intent puzzle = new Intent(this, FullSize.class);
puzzle.putExtra("selected_img", id);
startActivity(puzzle);
}
答案 0 :(得分:1)
您只需将图像ID传递给自定义适配器的构造函数即可。
首先,确保您正在发送图像资源ID。目前,您似乎在附加内容中发送行ID。
当您致电puzzle.putExtra("selected_img", id);
时,id
实际上是AdapterView
的行ID。 See documentation here
您需要传递的内容实际上是imageList.get(position)
,以获取当前所选项目的图片资源ID。
一旦你开始工作,你可以这样做:
传入您的图片ID:
Intent i = getIntent();
int imageID = i.getIntExtra("selected_img", 0);
ImageAdapter ia = new ImageAdapter(this, imageID);
自定义适配器,其中图像ID作为构造函数中的参数:
public class ImageAdapter extends BaseAdapter {
private Context mContext;
int imageID;
public ImageAdapter(Context c, int imageResourceID) {
mContext = c;
imageID = imageResourceID;
}
public int getCount() {
return 1;
}
public Object getItem(int position) {
return null;
}
public long getItemId(int position) {
return 0;
}
public View getView(int position, View convertView, ViewGroup parent) {
ImageView imageView;
if (convertView == null) {
imageView = new ImageView(mContext);
imageView.setLayoutParams(new GridView.LayoutParams(85, 85));
imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
imageView.setPadding(8, 8, 8, 8);
} else {
imageView = (ImageView) convertView;
}
imageView.setImageResource(imageID); //use the image id passed in through the constructor
return imageView;
}
}
答案 1 :(得分:0)
您可以使用Extras
在活动之间传递数据Intent intent = new Intent(getBaseContext(), SecondActivity.class);
intent.putExtra("imgId", id);
startActivity(intent);
然后在第二项活动中取回它:
Intent intent = getIntent();
int imgId = intent.getIntExtra("imgId");
你如何处理你的身份取决于你。
答案 2 :(得分:0)
如前面的回答中所述,您可以使用putExtra
或者您可以使用setData
。如果您要处理应用资源之外的图片,则必须处理Uri
。在这种情况下,请使用
Intent intent = new Intent(getBaseContext(), SecondActivity.class);
intent.setData(uri);
startActivity(intent);
在第二项活动中,您可以使用
Intent intent = getIntent();
Uri uri = intent.getData ();
Uri
对象可用于读取图像文件或有关图像的元数据。 Uri也可以是远程文件。