일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Android LiveData
- Basic Fragment
- Android 외부브라우저
- 혼자 만들었다!
- Chrome Dark
- 아이폰 알림 워치
- Admob Banner
- Android 값전달
- Android Bundle
- Android
- Android Jcenter
- mac java
- 현재 버전
- 애플워치
- Kotlin 형변환
- Android Progressbar
- Android 화면 꺼짐 방지
- Android Fragment Sample
- Android 광고
- Android Intent Bundle Data
- Android Intent data
- Android Admob Test ID
- Android 프로젝트명 변경
- Basic Android
- Android Jcenter Warning
- Chrome Dark Mode
- 페이스아이디 마스크
- 애플워치 완충
- Android Intent Bundle
- Android Button 대문자
- Today
- Total
목록Android Intent Bundle (2)
배고파
안녕하세요 안드로이드에서 데이터를 Activity - Activity 이동을 할때 Intent 를 사용합니다. 해당 코딩을 첨부하겠습니다. 좋은 코딩 화이팅 입니다. 보내는 쪽 Intent intent = new Intent(mContext, AbcActivity.class); Bundle bundle = new Bundle(); bundle.putString("valueURL", "url_ABC"); intent.putExtras(bundle); startActivity(intent); 받는 쪽 Intent intent = getIntent(); Bundle bundle = intent.getExtras(); String intentValue = bundle.getString("valueURL"); /..
안드로이드에서 화면 전환을 할때 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); i..