보내는 코드
Intent intent= new Intent(this,ResultActivty.class);
intent.putExtra("사진", bitmap);
startActivity(intent);
받는 코드
Intent intent = getIntent();
Bitmap bitmap = intent.getParcelableExtra("사진");
'안드로이드 > 잡다한 지식' 카테고리의 다른 글
안드로이드 스튜디오 EditText 밑줄 제거 (0) | 2021.03.02 |
---|---|
안드로이드 스튜디오 Recycler View 사용 (0) | 2021.02.18 |
안드로이드 스튜디오 내부 데이터베이스 연결하기 (0) | 2021.01.25 |
안드로이드 앱에서 API 요청하기 (Flask 사용) (0) | 2021.01.19 |
안드로이드 스튜디오 문자 받기, 문자 전송하기 (0) | 2020.12.29 |