开发者

How do I retrieve the Picasa id/URL of an image from the gallery

开发者 https://www.devze.com 2023-03-26 08:20 出处:网络
I have an activity that retrieves images from the device\'s gallery and uploads to a service. Now, for optimisation purposes, I would like to avoid uploading images that are on Picasa an just store th

I have an activity that retrieves images from the device's gallery and uploads to a service. Now, for optimisation purposes, I would like to avoid uploading images that are on Picasa an just store their ID or URL for later retrieval.

So my question is, how do I retrieve that information. My intent code is pasted below and retrieves the URI of the image.

Intent galleryIntent = new Intent();
galleryIntent.setType("image/*");
galleryIntent.setAction(Intent.ACTION_PICK);
startActivityForResult(galleryIntent, GALLERY_PIC_REQUEST);开发者_如何学Go

I tried to look for the PICASA_ID (MediaStore.Images.Media.PICASA_ID), but by using the method above, it returns null. Any ideas?


  • Launch an ACTION_GET_CONTENT intent instead of an ACTION_PICK

  • Provide a MediaStore.EXTRA_OUTPUT extra with an URI to a temporary file.


Add this to your calling activity:

File yourFile;

Now use this code to get Intent:

yourFile = getFileStreamPath("yourTempFile");
yourFile.getParentFile().mkdirs();
Intent galleryIntent = new Intent(Intent.ACTION_GET_CONTENT, null);
galleryIntent .setType("image/*");
galleryIntent .putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(yourFile));
galleryIntent.putExtra("outputFormat", Bitmap.CompressFormat.PNG.name());
startActivityForResult(galleryIntent, GALLERY_PIC_REQUEST);

MAKE SURE THAT yourFile is created

Also in your calling activity

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    switch(requestCode){
    case GALLERY_PIC_REQUEST:
        File file = null;
        Uri imageUri = data.getData();
        if (imageUri == null || imageUri.toString().length() == 0) {
            imageUri = Uri.fromFile(mTempFile);
            file = mTempFile;
            //this is the file you need! Check it
        }
        //if the file did not work we try alternative method
        if (file == null) {
            if (requestCode == 101 && data != null) {
                Uri selectedImageUri = data.getData();
                String selectedImagePath = getPath(selectedImageUri);
                //check this string to extract picasa id
            }
        }
    break;
    }
}

public String getPath(Uri uri) {
    String[] projection = { MediaStore.Images.Media.DATA };
    Cursor cursor = managedQuery(uri, projection, null, null, null);
    if(cursor!=null)
    {
        int index = cursor
        .getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
        cursor.moveToFirst();
        return cursor.getString(index);
    }
    else return null;
}


@Override
    public void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        dir =new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/MyImages");
        dir.mkdir();
        filename = ("Image_" + String.valueOf(System.currentTimeMillis()) + ".poc");
    }

protected Uri getTempFile()
    {
        File file = new File(dir,filename);
        muri = Uri.fromFile(file);
        return muri;
     } 


    @Override
    public boolean onCreateOptionsMenu(Menu menu)
    {
        menu.add("Pick Image");
        return super.onCreateOptionsMenu(menu);
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) 
    {
         // TODO Auto-generated method stub
         super.onOptionsItemSelected(item);
         openOptionsChooseDialog();
         return true;
    }

 private void openOptionsChooseDialog()
    {
            AlertDialog.Builder builder = new AlertDialog.Builder(AppActivity.this).setTitle("Select Image").setItems(items, new DialogInterface.OnClickListener()
            {
                public void onClick(DialogInterface dialog, int item)
                {
                    Intent intent = new Intent();
   intent.setAction(Intent.ACTION_PICK);
                        intent.setType("image/*");
                        intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
                        intent.putExtra(MediaStore.EXTRA_OUTPUT, getTempFile());
                        startActivityForResult(intent, SELECT_PICTURE);
 }

            });
            final AlertDialog alert = builder.create();
            alert.show();
  }

    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent data) 
    {
        super.onActivityResult(requestCode, resultCode, data);

        switch(requestCode)
        {
case SELECT_PICTURE : if (resultCode == RESULT_OK) 
            {
                  filepath = muri.getPath();
                  Toast.makeText(this, filepath, Toast.LENGTH_SHORT).show();
                //can do bla bla bla...
            }

I have used the same approach and it woks.Hope It could help u too..

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号