본문 바로가기

개발/Android

Intent를 이용한 Activity 간 화면 이동

A화면에서 B화면으로 이동 할 때


Intent intent=new Intent(A.this,B.class);
startActivity(intent);