4

我有一个活动可以打开另一个活动以获取相机图库图片。图片回到我原来的活动并在 imageView 中休息。这工作正常。如何保存图像,以便用户稍后返回或杀死应用程序时图像仍然存在。我知道我应该使用共享首选项来获取图像路径而不是保存图像本身,但我只是不知道该怎么做。

活动一

private ImageView im1;
private String selectedImagePath;
private static final int SELECT_PICTURE = 1;

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);
    im1.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);
    };
   ((Button)dialogView.findViewById(R.id.button3))
   .setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
    Intent intent = new Intent();
    intent.setType("image/*");
    intent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(Intent.createChooser(intent,"Select Picture"), SELECT_PICTURE);
    }});

活动 B

    Button send = (Button) findViewById(R.id.send);
    send.setOnClickListener(new OnClickListener() {
 public void onClick(View v) {              
            Intent intent=new Intent();
            setResult(RESULT_OK, intent);
            Bundle bundle=new Bundle();
            bundle.putInt("image",R.id.showImg);
            intent.putExtras(bundle);
            finish();

 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);
    }
4

4 回答 4

4

用图像覆盖onPause()方法Activity(要了解原因onPause,请在此处检查活动图的生命周期:http: //developer.android.com/reference/android/app/Activity.html),如下所示:

@Override
protected void onPause() {
    SharedPrefrences sp = getSharedPreferences("AppSharedPref", 0); // Open SharedPreferences with name AppSharedPref
    Editor editor = sp.edit();
    editor.putString("ImagePath", selectedImagePath); // Store selectedImagePath with key "ImagePath". This key will be then used to retrieve data.         
    editor.commit();
    super.onPause();
}

这意味着每当它Activity进入后台时,图像路径将SharedPreferences与名称一起保存AppSharedPref- 这个名称可以是您喜欢的任何名称,但在检索数据时需要使用相同的名称。

然后覆盖onResume()相同的方法,Activity以便您可以Activity在前景时检索图像路径:

@Override
protected void onResume() {
    SharedPreferences sp = getSharedPreferences("AppSharedPref", 0);
    selectedImagePath = settings.getString("ImagePath", "");
    super.onResume();
}

您可能还想使用覆盖其他方法,例如onStart()根据图表,但我留给您。

于 2013-06-28T05:28:55.983 回答
1

您可以使用“selectedImagePath”将意图从一个活动传递到另一个活动。

在活动 A。

Intent 意图 = new Intent(this , Activity.class); intent.putExtra("imagePath", selectedImagePath );

并在活动 B 中获得它,

String strImagePath = getIntent().getExtras().getString("imagePath");

于 2013-06-28T05:20:09.070 回答
1
String imagePath = ... ;

SharedPrefrences prefs = getSharedPreferences("application_settings", 0);
Editor editor = prefs.edit();
editor.putString("image_path", imagePath);              
editor.commit();
于 2013-06-28T05:22:08.343 回答
1
SharedPreferences prefs = this.getSharedPreferences(
  "com.example.app", Context.MODE_PRIVATE);

阅读偏好:

String path = prefs.getString("key", default value); 

编辑和保存首选项

prefs.edit().putString("key", value).commit();
于 2013-06-28T05:26:03.013 回答