모바일 전화걸기 & sms 보내기 intent example
페이지 정보
작성자
본문
전화걸기 & sms 보내기 intent example
전화걸기 Intent example
Intent intent = new Intent( Intent.ACTION_CALL );
intent.setData( Uri.parse( "tel:01012345678" ) );
startActivity( intent );
sms 보내기 intent example
Intent intent = new Intent( Intent.ACTION_VIEW );
intent.setData( Uri.parse( "sms:01012345678" ) );
startActivity(intent);
댓글목록
등록된 댓글이 없습니다.