Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BurningDroid/1846f7514968a981937f8c0dbd278c29 to your computer and use it in GitHub Desktop.
Save BurningDroid/1846f7514968a981937f8c0dbd278c29 to your computer and use it in GitHub Desktop.
[Android] startActivityForResult 사용 시 주의할 점 code 2
// Create intent to deliver some kind of result data
Intent result = new Intent("com.example.RESULT_ACTION", Uri.parse("content://result_uri"));
setResult(Activity.RESULT_OK, result);
finish();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment