반응형
A activity에서 B activity로 데이터 전송할 때
A activity
Intent intent = new Intent(getApplicationContext(), TestListActivity.class); intent.putExtra("Code1", "AAAA"); intent.putExtra("Code2", "BBBB"); //다른 화면 전환 startActivity(intent);
B activity
Intent intent = getIntent(); /*데이터 수신*/ String aaaa = intent.getStringExtra("Code1")); String bbbb = intent.getStringExtra("Code2"));
반응형
'Android' 카테고리의 다른 글
error: Can't create handler inside thread that has not called Looper.prepare() (0) | 2019.09.28 |
---|---|
폰의 전화번호 조회 (0) | 2019.09.26 |
Android Exception Message (0) | 2019.09.05 |
Activity 간 이동 후에 이전 Activity로 되돌아 갈 때 (0) | 2019.09.05 |
JSONObject 사용시 주의 사항 (0) | 2019.09.02 |
댓글