본문 바로가기
이과/JAVA 안드로이드

[안드로이드] 화면간 이동 하기 intent

by 코딩초밥 2021. 5. 7.
반응형

안녕하세요 코딩초밥입니다

안드로이드에서 기본인 버튼을 누르면 화면을 이동하는 것을 배워보겠습니다 

😀


기본적인 화면을 만듭니다. [XML]

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">


   <Button
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:text="화면넘어가기"
       android:onClick="clickbtn"
       android:layout_alignParentBottom="true"/>
</RelativeLayout>

이후 이동 할수있는 액티비티를 하나 더 만들어봅니다.

이후 메인에 intent를 추가해서 화면 이동을 해봅시다.

 

package com.example.myapplication;

import androidx.appcompat.app.AppCompatActivity;

import android.content.Intent;
import android.os.Bundle;
import android.view.View;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }


    public void clickbtn(View view) {
        Intent intent = new Intent(this, MainActivity2.class);
        startActivity(intent);
    }
}

 

 

그럼 버튼을 누르시면 화면이 이동하는걸 볼수있습니다.

 

반응형

댓글