bomjin / Android-Studio-Application-

안드로이드 스튜디오를 활용한 실전 앱 만들기
1 stars 0 forks source link

화면전환 만들기 P141 #27

Open bomjin opened 5 years ago

bomjin commented 5 years ago

intent 클래스 사용법

Intent intent 1 = new Intent (getApplicationContext(), ShowMe,class); //연결할 클래스
startActivity(intent1);

androidManifest

name 속성에 새로 만든 클래스 이름의 엑티비티이름을 적는다.

bomjin commented 5 years ago

https://github.com/bomjin/Android-Studio-Application-/tree/Intent