Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a button on MainActivity that when i click it it open activity that show galery photo

and when i clicked one of the photo list , i want to get path of this picture to MainActivity

this is my code

MainActivity

case R.id.btn_tool_galery:
    enter Intent in=new Intent(this,ListViewImagesActivity.class);
    startActivityForResult(in, 2);  
    break;

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    switch (requestCode) {

    case 2:
        if (resultCode == Activity.RESULT_OK) {
            Bundle extras = getIntent().getExtras(); 
            int position = extras.getInt("id");
            // and get whatever type user account id is

            // Selected image id
            //int position = this.getIntent().getExtras().getInt("id");
            Toast.makeText(TpMainActivity.this, "position  "+position, Toast.LENGTH_LONG).show();
        }
    }
}

this is my galeryAcivity

public void onItemClick(AdapterView<?> a, View v, int position, long id) { 

    // Sending image id to PictureActivity
    Intent i = new Intent();
    // passing array index
    i.putExtra("id", position);
    setResult(Activity.RESULT_OK, i);
    finish();

but when i run it i have error at this stade

     int position = extras.getInt("id"); 
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.