Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Chrome Dark
- Android Jcenter Warning
- mac java
- Android 값전달
- 애플워치 완충
- Android 광고
- Android Progressbar
- Android LiveData
- Android Fragment Sample
- Kotlin 형변환
- Android Bundle
- Admob Banner
- 애플워치
- Android Jcenter
- Android 화면 꺼짐 방지
- Android Intent data
- Android
- Android 외부브라우저
- Chrome Dark Mode
- Android 프로젝트명 변경
- Android Admob Test ID
- 현재 버전
- Android Button 대문자
- 아이폰 알림 워치
- 페이스아이디 마스크
- 혼자 만들었다!
- Android Intent Bundle Data
- Android Intent Bundle
- Basic Android
- Basic Fragment
Archives
- Today
- Total
배고파
Android Intent Bundle 본문
안드로이드에서 화면 전환을 할때 Intent 를 사용합니다.
이 경우 값을 전달할때 사용하는 방법에 대한 내용 입니다.
보내는 코드
Bundle bundle = new Bundle();
bundle.putInt("value001", "100");
bundle.putInt("value002", "200");
Intent intent = new Intent(mContext, SecondActivity.class);
intent.putExtras(bundle);
startActivity(intent);
받는 코드
Intent intent = getIntent();
Bundle bundle = intent.getExtras();
int value001 = bundle.getInt("value001", 0);
int value002 = bundle.getInt("value002", 0);
'Developer > Android' 카테고리의 다른 글
[Android] Dependency Injection(DI) (0) | 2021.01.19 |
---|---|
Android 화면 꺼짐 방지 (0) | 2021.01.12 |
Android Progress Bar 샘플 정리 (0) | 2021.01.12 |
Invoke-customs are only supported starting with Android O (--min-api 26) (0) | 2021.01.11 |
Android Button 클릭상태 색상변경 (0) | 2020.01.04 |