2019년 12월 10일 화요일

[Android] Activity 띄우기

Android에서 새로운 Activity를 띄울 때 Intent를 사용한다.

Intent intent = new Intent( getContext(), NewActivity.class );
startActivity( intent );

Intent를 이용하여 Activity에 데이터를 전달 할 수 있다.

Intent intent = new Intent( getContext(), NewActivity.class );
intent.Extra( "testParam", 1 );
startActivity( intent );

NewAcitivity에서는 다음과 같이 데이터를 수신하면 된다.

protected void onCreate(Bundle savedInstanceState) {
 ...
 Intent intent = getIntent();
 int param1 = intent.getIntExtra("testParam");
}



댓글 없음:

댓글 쓰기