문자 화면

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData( Uri.parse("sms:" + "01000000000"));
startActivity(intent);


전화 걸기

Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:" + userPhone));

startActivity(intent);


+ Recent posts