IT/Android

android - 버튼 클릭 이벤트

노마드오브 2018. 9. 4. 22:05

파일명 : activity_main.xml

<?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">

<Button
android:id="@+id/btn1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="버튼1"/>

<Button
android:id="@+id/btn2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="버튼2"/>

<Button
android:id="@+id/btn3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="버튼2"/>


</LinearLayout>


파일명 : MainActivity.java

package com.example.it.myapplication3;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); // 전체뷰 연결

Button btn1; // 자바 버튼 객체변수

//XML에서 Java로 "진짜뷰" 찾아서 가져오기
btn1 = (Button) findViewById(R.id.btn1);

// 버튼 클릭시 이벤트 처리
// 리스너 객체변수 만들기
btn1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText( MainActivity.this, "클릭", Toast.LENGTH_LONG).show();
}
});

}
}



실행화면 : 버튼 1 클릭시, 아래 클릭 토스트 띄우기