Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BurningDroid/3dad999b2de5b3e9d487e0747b31b7cf to your computer and use it in GitHub Desktop.
Save BurningDroid/3dad999b2de5b3e9d487e0747b31b7cf to your computer and use it in GitHub Desktop.
[Android] startActivityForResult 사용 시 주의할 점 code 1
static final int PICK_CONTACT_REQUEST = 1; // request code
private void pickContact() {
Intent pickContactIntent = new Intent(Intent.ACTION_PICK, Uri.parse("content://contacts"));
pickContactIntent.setType(Phone.CONTENT_TYPE);
startActivityForResult(pickContactIntent, PICK_CONTACT_REQUEST);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment