인텐트(Intent) - 액티비티(화면) 이동하기
안녕하세요.
오늘은 안드로이드 기초 Intent를 이용한 액티비티 이동에 대해 알아보겠습니다.
MainActivity에서 버튼을 눌러 SubActivity로 이동하는 예제입니다.
예제 Git
https://github.com/Yujeongju/blogExample/tree/2021-07-25-intent
Android API reference
https://developer.android.com/reference/android/content/Intent
1. 이동할 액티비티 만들기
MainActivity에서 이동할 SubActivity를 생성합니다.
New > Activity > Empty Activity
2. XML 파일 수정
2-1. MainActivity
MainActivity에는 버튼을 추가하겠습니다.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center">
<Button
android:id="@+id/final_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="이동 버튼"/>
</LinearLayout>
버튼에 클릭 이벤트를 발생시키기 위해 "final_btn" ID를 부여하였습니다.
아래 사진처럼 버튼이 추가된 화면이 나오면 됩니다.
색은 다를 수 있습니다. 중요한 것은 버튼이 추가되었다는 것입니다.
2-2. SubActivity
SubActivity는 이동했다는 것만 알아볼 수 있게 Textview를 하나 추가하였습니다.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="개발새발 블로그"/>
</LinearLayout>
아래 사진처럼 가운데 텍스트가 한 줄 적혀있는 화면이 나옵니다.
3. 코드 작성
이번 예제에서는 MainActivity.java에만 코드를 작성하면 됩니다.
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button = findViewById(R.id.final_btn); //xml에서 생성한 id 매치
//버튼에 클릭 이벤트 적용
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
//인텐트 선언 및 정의
Intent intent = new Intent(MainActivity.this, SubActivity.class);
//액티비티 이동
startActivity(intent);
}
});
}
}
Intent intent = new Intent(시작 액티비티 이름.this, 이동할 액티비티 이름.class)로 작성하면 됩니다.
* 완성
Intent를 이용해 액티비티를 이동하는 기능을 구현해 보았습니다.
꼭 Button의 클릭이벤트로 구현할 필요는 없습니다.
화면 간 이동하는 시나리오는 상당히 흔하고 다양하니까요.
여러 가지로 응용해보시면 되겠습니다.
Intent를 이용하여 액티비티를 이동할 때 데이터를 주고 받는 예제는 다음 포스팅에서 다루도록 하겠습니다.
감사합니다!
다음 포스팅 보러가기
https://jeong9216.tistory.com/6
아직은 초보 개발자입니다.
더 효율적인 코드 훈수 환영합니다!
공감과 댓글 부탁드립니다.