I would like to add a AlertDialog after clicking on a button (cf below) that starts an activity to choose a picture.
I click the button to choose a picture. I choose the picture and I want to make display my AlertDialog after choosing the picture.
final Button myButton = (Button) findViewById(R.id.button);
myButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(MyActivity.this, OpenImageActivity.class);
startActivity(intent);
}
});
How can i make visible my AlertDialog?
Thanks.