티스토리 뷰
넘겨주는 Activity
intent intent = new intent(this, Main.class);
intent.putExtra("image", BITMAP);
startActivity(intent);
받는 Activity
Intent intent = getIntent();
(Bitmap)intent.getParcelableExtra("image")
오늘도 하나 배워갑니다.^^
'개발 > 개발 자료' 카테고리의 다른 글
(JSP) Could not open the editor: An unexpected exception was thrown (0) | 2015.03.20 |
---|---|
(Android) TextView Animation 처리 fade in/out (0) | 2015.03.13 |
(Android) Content Add/Insert (0) | 2015.02.04 |
(.NET) 배포버전 (Release 버전) EXE파일 만들기 (0) | 2015.02.04 |
(C#) EXE파일 다른피씨에서 실행이 안될 때 (0) | 2015.02.04 |
댓글