我有以下代码,允许我在点击按钮时在我的移动设备上打开图库。当我选择图像时,它会在我的应用程序中显示所选图像。但是,我需要能够选择两个不同的图像,然后我将用它们来比较两者的结构。我已经尝试了很多方法来做到这一点,但到目前为止还没有任何工作。
我希望能够选择两个不同的图像,然后允许用户更改这些图像,如果他们选择了不正确的图像,或者向前移动并从应用程序的主要目的开始,比较结构相似性。
public class SelectImage extends Activity {
private static final int SELECT_PICTURE = 1;
private static int RESULT_LOAD_IMG = 1;
String selectedImagePath, selectedImagePath2;
ImageView img;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.select_image);
img = (ImageView)findViewById(R.id.ImageView01);
((Button) findViewById(R.id.Button01)).setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
Intent galleryIntent = new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
// Start the Intent
startActivityForResult(galleryIntent, RESULT_LOAD_IMG);
}
});
}
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == RESULT_OK) {
if (requestCode == SELECT_PICTURE) {
Uri selectedImageUri = data.getData();
selectedImagePath = getPath(selectedImageUri);
System.out.println("Image Path : " + selectedImagePath);
img.setImageURI(selectedImageUri);
}
}
}
public String getPath(Uri uri) {
String[] projection = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(uri, projection, null, null, null);
int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
}
}
答案 0 :(得分:0)
您无法使用ACTION_PICK意图选项进行此操作。要实现这一点,您需要使用带有图像的自定义ListView。