(1) ImageView 클릭 시, 메일 작성 화면으로 전환하기
- 역시 화면 전환을 위해, Intent(Intent.ACTION_SEND)를 사용함
(2) 실행 화면
- Email 로그인 계정을 설정한 뒤에 소스를 수행하여야, 아래와 같은 화면이 보임
(3) 소스 설명
- 역시 화면 전환을 위해, Intent(Intent.ACTION_SEND)를 사용함
(2) 실행 화면
- Email 로그인 계정을 설정한 뒤에 소스를 수행하여야, 아래와 같은 화면이 보임
(3) 소스 설명
Line |
Line 설명 |
Intent emailIntent = new Intent(Intent.ACTION_SEND); |
Intent 객체 생성 |
emailIntent.setType("plain/text"); |
Type 설정 |
emailIntent.putExtra(Intent.EXTRA_EMAIL, new
String[]{"receiver@gmail.com"}); |
수신자 주소 설정 |
//emailIntent.putExtra(Intent.EXTRA_SUBJECT,
""); |
메일 제목 설정 |
//emailIntent.putExtra(Intent.EXTRA_TEXT,
""); |
메일 내용 설정 |
startActivity(Intent.createChooser(emailIntent,
"send email")); |
화면 전환 |
'컴퓨터 > Android' 카테고리의 다른 글
Android]Convert Drawable to Bitmap (0) | 2010.07.09 |
---|---|
Android]Gallery에 Image 추가 하기 (2) | 2010.07.07 |
Android]Error geneating final archive : invalid entry CRC (0) | 2010.06.20 |
Android]특정 URL로 Web Browser 실행(Hyper Link) (0) | 2010.06.20 |
Android]MediaPlayer(mp3 재생) (0) | 2010.06.20 |