我有一张图片列表:
private int[] images = {
R.drawable.blue_icon_left_foot,
R.drawable.blue_icon_right_foot,
R.drawable.blue_icon_left_hand,
R.drawable.blue_icon_right_hand,
R.drawable.green_icon_left_foot,
R.drawable.green_icon_right_foot,
R.drawable.green_icon_left_hand,
R.drawable.green_icon_right_hand,
R.drawable.red_icon_left_foot,
R.drawable.red_icon_right_foot,
R.drawable.red_icon_left_hand,
R.drawable.red_icon_right_hand,
R.drawable.yellow_icon_left_foot,
R.drawable.yellow_icon_right_foot,
R.drawable.yellow_icon_left_hand,
R.drawable.yellow_icon_right_hand};
我想让用户使用Intent:
从图库中选择图像Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), 1);
然后应该用用户给出的新图像替换阵列的一个图像。当我从用户那里获得图像时,我只有图像的URI:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK && requestCode == 1) {
Uri imageUri = data.getData();
//Insert image into images list
}
}
是否有可能以某种方式获取图像的整数ID,以便我可以将图像插入与可绘制文件夹中的图像相同的列表中? 或者我应该尝试存储URI列表(如果可以从drawable文件夹中获取图像的URI)? 或者是否存在完全不同且更好的第三种解决方案?
答案 0 :(得分:0)
如果您使用的是API 17或更高版本,则可以使用View.generateViewId()生成ID。
从主要文档:
生成适合在setId(int)中使用的值。这个值不会 与由aapt为R.id。
在构建时生成的ID值冲突返回生成的ID值
您可以查看此答案,了解使用较低API时的替代方法:Android: View.setID(int id) programmatically - how to avoid ID conflicts?
答案 1 :(得分:0)
我认为你要做的事情有点误导。 / res目录中的资源是与项目捆绑在一起的编译时资源。一个人通过他们的设备通过意图选择的图像是一个运行时文件,它会因用户,设备等而异。最好不要尝试对待它们。将用户选择保存为dataUris或字符串,并将资源保持为整数。