I try to use the official way to handle dialog.

showDialog(1);


protected Dialog onCreateDialog(int id) {       
switch(id) {
case Dialogs.MARKS:
    return new DialogMarks(this);
}
return null;
}


public DialogMarks(Context context) {
super(context);

setTitle(R.string.marks);
setContentView(R.layout.listview_dialog);

ListView listView = (ListView) findViewById(R.id.listview_dialog);
MarkItemAdapter mia = new MarkItemAdapter(context, R.layout.mark_row, Util.getMarkitems(context));
listView.setAdapter(mia);


listView.setOnItemClickListener(new OnItemClickListener() {

    @Override
    public void onItemClick(AdapterView<?> parent, View view,
        int position, long id) {

        dismiss();
    }
});
}

It works fine but how can I get the dialog after dismission to look for the clicked item. Is there any callback method for dismissed dialogs in the Activity?

link|improve this question

0% accept rate
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.