简体   繁体   中英

getting uri from android camera on all versions

I'm trying to take a picture with my app, save it and retrieve the url. Currently I have:

Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
startActivityForResult(intent, TAKE_PICTURE);

public void onActivityResult(int requestCode, int resultCode, Intent data) 
{
    super.onActivityResult(requestCode, resultCode, data);
    switch (requestCode) 
    {
        case TAKE_PICTURE:
        {
            if (resultCode == RESULT_OK) 
            {
                File file = new File(getPath(data.getData()));

                Date dt = new Date(file.lastModified());
                String datum = dt.toLocaleString();

                Comment_Resource photo = new Comment_Resource(file.getAbsolutePath(), datum, true);


            }
            break;
        }
      }
}

this works on some phones but a lot of phones don't save the picture causing a nullpointer.

尝试这个:

Uri uri = Uri.fromFile(file);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM