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