1

我已将以下代码更新为以下行更改,但不起作用:

//设置Image位置

File file = new File(Environment.getExternalStorageDirectory() + "/Skynet/images/t1.jpg" );

Uri uriTarget = Uri.fromFile(file);

我想保存jpeg到上面的目录,但不知道,因为它正在使用媒体存储。任何提示都可以做到这一点。

import android.app.Activity;
import android.content.ContentValues;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.provider.MediaStore;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;

public class AndroCamera extends Activity {
   private static final int IMAGE_CAPTURE = 0;
   private Button startBtn;
   private Uri imageUri;
   private ImageView imageView;

/** Called when the activity is first created.
 *  sets the content and gets the references to
 *  the basic widgets on the screen like
 *  {@code Button} or {@link ImageView}
 */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    imageView = (ImageView)findViewById(R.id.img);
    startBtn = (Button) findViewById(R.id.startBtn);
    startBtn.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            startCamera();
        }
    });
}

public void startCamera() {
    Log.d("ANDRO_CAMERA", "Starting camera on the phone...");
    String fileName = "testphoto.jpg";
    ContentValues values = new ContentValues();
    values.put(MediaStore.Images.Media.TITLE, fileName);
    values.put(MediaStore.Images.Media.DESCRIPTION,
            "Image capture by camera");
    values.put(MediaStore.Images.Media.MIME_TYPE, "image/jpeg");
    imageUri = getContentResolver().insert(
            MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
    Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    intent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);
    intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);
    startActivityForResult(intent, IMAGE_CAPTURE);
}

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == IMAGE_CAPTURE) {
        if (resultCode == RESULT_OK){
            Log.d("ANDRO_CAMERA","Picture taken!!!");
            imageView.setImageURI(imageUri);
        }
    }
}

}

4

1 回答 1

4

那是因为Uri您使用的是来自媒体管理器,也许如果您使用Uri您希望将其保存到的定义,它应该可以工作。这里有一个提示:

mImageUri= Uri.fromFile( new File( Environment.getExternalStorageDirectory(),
                        "pic_" + String.valueOf( System.currentTimeMillis() ) + ".jpg" ) );

在此它被保存到根目录,但是由于您正在创建文件,因此您可以将其放置在您想要的任何位置。只要确保目录存在,否则创建它。正如@Simon 所说,确保您有权在外部存储上写入。

更新 1: 目前你有类似的东西:

imageUri = getContentResolver().insert(
            MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);

所以插入只是将图像插入到表MediaStore中......但如果那是你真正需要的,那么你需要覆盖. 添加你的东西是这样的:DataMediaStorecontentValues

values.put( MediaStore.Images.ImageColumns.DATA, fullPath );

如果您不需要使用该MediaStore表,则无需进行插入,因此ContentValues不需要。

于 2012-06-06T21:15:21.533 回答