배고파

[Android] Intent Bundle 본문

Developer/Android

[Android] Intent Bundle

hungry7013 2021. 2. 1. 01:04

안녕하세요

 

안드로이드에서 데이터를 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");
// intentValue : url_ABC 

 

 

[Android] Intent Bundle

'Developer > Android' 카테고리의 다른 글

[Android] Admob 적용하기 (Banner)  (0) 2021.02.01
[Android] Admob 테스트 광고 ID  (0) 2021.02.01
Kotlin 형변환  (0) 2021.01.22
Android Button 대문자 자동변환  (0) 2021.01.22
Android LiveData ViewModel  (0) 2021.01.21