개발/안드로이드(Android-Kotlin)

intent data 전달

----___<<<<< 2019. 8. 17. 19:51

Activity들 간에 Data를 전달해줄 때가 있는데

 

매우 쉽습니다.

 

input.putExtra라고 지정해줘서

 

저는 url라는 값으로, dogList에 있는 것을 WebviewActivity로 넘겨주려고 합니다.

 

 

자, 그 다음은 WebviewActivity에서 받는건데

 

intent.hasExtra는 intent에 url로 값이 넘어왔는지 확인해주고

 

값이 넘어왔으면

 

intent.getStringExtra("url")로 받아줍니다.

 

 

끝 :)

'개발 > 안드로이드(Android-Kotlin)' 카테고리의 다른 글

Primary key Realm  (0) 2019.08.22
dialog  (0) 2019.08.22
WEBVIEW  (0) 2019.08.17
Fragment  (0) 2019.08.17
setBackgroundColor  (0) 2019.08.17