Created
October 22, 2019 15:44
-
-
Save BurningDroid/1846f7514968a981937f8c0dbd278c29 to your computer and use it in GitHub Desktop.
[Android] startActivityForResult 사용 시 주의할 점 code 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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