문제

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?

도움이 되었습니까?

해결책

Call this on List Item Click Event.

Intent data = new Intent();
data.putExtra("SOMETHING", "EXTRAS");
setResult(RESULT_OK, data); 
finish();
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top