Frage

I have a ListActivity that is started with startActivityForResult by a PreferenceActivity.

On ListItemClick, I want to return with a result to my PreferenceActivity.

How do I do this? When will onActivityResult be called?

War es hilfreich?

Lösung

Call this on List Item Click Event.

Intent data = new Intent();
data.putExtra("SOMETHING", "EXTRAS");
setResult(RESULT_OK, data); 
finish();
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top