Action 썸네일형 리스트형 [Android][펌]안드로이드 Intent 사용법 Let's take a look at the most common implicit intents such as making a phone call, launching a web address, sending an email, etc.Phone CallPermissions:Intent:Intent callIntent = new Intent(Intent.ACTION_CALL); callIntent.setData(Uri.parse("tel:0377778888")); startActivity(callIntent);Send Email (to Phone Email Client)Compose an email in the phone email client:Intent intent = new Intent(Intent.A.. 더보기 이전 1 다음