안드로이드 Intent 예제
[Android] Intent 활용 예제안드로이드 Intent 활용 예제 연락처 Intentview plainprint?// 연락처 조회 Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("content://contacts/people" + String.valueOf(contact.getId()))); startActivity(intent); view plainprint?// 연락처 등록 Intent intent = new Intent(Intent.ACTION_INSERT, Uri.parse("content://contacts/people")); startActivity(intent); view plainprint?// 연락처 수정 Intent inte..
개발/개발 자료
2013. 9. 8. 17:24