반응형
public static void callAction(Context context, String num) {
try {
// 전화 걸기
Uri uri = Uri.parse("tel:" + num);
Intent it = new Intent(Intent.ACTION_CALL, uri);
context.startActivity(it);
} catch (ActivityNotFoundException e) {
Toast.makeText(context, "" + e.getMessage(), Toast.LENGTH_SHORT)
.show();
}
}
public static void smsAction(Context context, String num, String body) {
try {
// SMS 발송
Uri uri = Uri.parse("smsto:" + num);
Intent it = new Intent(Intent.ACTION_SENDTO, uri);
it.putExtra("sms_body", body);
context.startActivity(it);
} catch (ActivityNotFoundException e) {
Toast.makeText(context, "" + e.getMessage(), Toast.LENGTH_SHORT)
.show();
}
}
반응형
'안드로이드 개발' 카테고리의 다른 글
안드로이드 전화번호 포맷설정 (0) | 2015.06.09 |
---|---|
안드로이드 숫자세자리마다 쉼표넣기 (0) | 2015.06.09 |
ANDROID STUDIO QR바코드스캐너구현 ZXing (0) | 2015.06.04 |
byte[]에서 Bitmap으로 변환, Bitmap 이미지회전 (0) | 2015.06.03 |
안드로이드 오픈소스 모음 (2) | 2015.05.28 |
WRITTEN BY
,