Pergunta

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?

Foi útil?

Solução

Call this on List Item Click Event.

Intent data = new Intent();
data.putExtra("SOMETHING", "EXTRAS");
setResult(RESULT_OK, data); 
finish();
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top