아는 것이 좋은 것이다.

[Android] Activity 이동시 값 넘기기 본문

Android

[Android] Activity 이동시 값 넘기기

start0 2014. 10. 27. 11:53

intent = new Intent(this, FirstActivity.class);

intent.putExtra("변수", "넘길값");

startActivity(intent);

'Android' 카테고리의 다른 글

[Android] 로그캣 사용하기 (로그찍기)  (0) 2014.11.01
[Android] 간단한 다이얼로그  (0) 2014.10.30
[Android] activity 이동(Intent)  (0) 2014.10.25
[Android] json 출력  (0) 2014.10.18
[Android] actionbar color 변경  (0) 2014.10.16
Comments