728x90 반응형 SMALL Intent (인텐트)로 값 전달하기1 [Android Studio] Intent (인텐트)로 값 전달하기 Intent (인텐트)로 값 전달하기 MainActivity에서 다른 Activity로 간단한 자료형 (Int, String, Boolean 등)의 데이터를 intent에 포함하여 전달할 수 있다. 인텐트를 정의한 후에 putExtra를 통해 값을 담을 수 있다. java : MainActivity Intent intent = new Intent(this, SecondActivity.class); intent.putExtra("word", "string 전달"); intent.putExtra("number", 100); intent.putExtra("boolean", true); startActivity(intent); java : SecondActivity package com.example.myapp.. 2022. 11. 11. 이전 1 다음 728x90 반응형 LIST