기초 - 화면 이동
Intent: 화면 이동을 할때 사용하는 클래스, 현재 화면에서 원하는 화면으로 이동
한글: 두개의 구성요소간에 런타임 바인딩을 제공하는 개체입니다.
영어: An Intent is an object that provides runtime binding between separate components, such as two activities.
이벤트 발생 하는곳에서 처리 하면됨
방법 1>
Intent intent = new Intent(this, [이동 할 화면 클래스].class);
startActivity(intent);
밥법 2>
Intent intent = new Intent([현재 화면 클래스].this, [이동 할 화면 클래스].class);
startActivity(intent);
예제>
현재의 클래스: MainActivity.java
이동할 클래스: MenuActivity.java
방법 1>
Intent intent = new Intent(this, MenuActivity.class);
startActivity(intent);
방법 2>
Intent intent = new Intent(MainActivity.this, MenuActivity.class);
startActivity(intent);
출처>
안드로이드 개발자 사이트
https://developer.android.com/training/basics/firstapp/starting-activity
728x90
'Software > Android' 카테고리의 다른 글
[Android] 앱 네트워킹 - 에러 응답 코드 404: E/Volley: [###] BasicNetwork.performRequest: Unexpected response code 404 for https://주소 (0) | 2020.04.12 |
---|---|
[Android] 기초 - 리소스(res), 간단한 문자열 리소스를 만들고 만든 리소스에 접근하기 (0) | 2020.04.10 |
[Android] 앱 네트워킹을 위한 HTTP 라이브러리 Volley 추가하기 (0) | 2020.03.29 |
[Android] 타이틀바 없애기 - 안드로이드 위쪽의 프로젝트 이름 지우기, styles.xml (0) | 2020.03.15 |
[Android] 웹뷰 WebView - 웹 페이지 그대로 사용 (0) | 2019.10.27 |