본문 바로가기

컴퓨터/android

이메일 보내기

Uri uri = Uri.parse("mailto:xxx@abc.com");
Intent it = new Intent(Intent.ACTION_SENDTO, uri);
startActivity(it);


'컴퓨터 > android' 카테고리의 다른 글

UnknownHostException  (0) 2013.07.12
네트워크 연결 상태 확인  (0) 2013.07.11
Custom ListView  (0) 2013.07.09
슬라이드 화면 전환  (0) 2013.07.05
ArrayList, ArrayAdapter, ListView  (0) 2013.07.05