일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 동영상
- c언어
- 캡슐화
- 클래스 다이어그램
- 충남 천안
- 동영상 강의
- 프로젝트
- 네트워크 프로그래밍
- 유튜브 동영상 강의
- 언제나휴일
- c#
- 표준 입출력
- C++
- 산책하기 좋은 곳
- 실습으로 다지는 c#
- 무료 동영상 강의
- 강의
- 소켓 통신
- 졸업 작품
- 언제나 휴일
- 표준 라이브러리 함수
- Windows Forms
- 추천
- 원격 제어 프로그램
- 실습
- 파이썬
- 소스 코드
- 졸업 작품 소재
- 안드로이드 앱 개발
- 알고리즘
Archives
- Today
- Total
프로그래밍 언어 및 기술 [언제나휴일]
4. 기본 컨트롤 – 3. Button 본문
이번에는 사용자가 특정 기능을 수행하고자 할 때 사용하는 Button을 사용하는 간단한 실습을 해 봅시다.
최상위 요소에 LinearLayout을 배치하세요. 그리고 EditText, TextView, Button을 자식으로 배치합니다.
Button을 누르면 Java 소스 코드로 EditText에 입력한 값을 TextView의 text 속성으로 설정하게 할 것이므로 각 컨트롤에 id를 부여하세요.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="com.example.ehclub.ex_button.MainActivity"
android:orientation="vertical">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/et"
android:hint="입력하세요."/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=""
android:id="@+id/tv"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Press"
android:id="@+id/btn"/>
</LinearLayout>
먼저 MainActivity.java 파일의 onCreate 메서드에서 xml 파일에서 배치한 Button을 참조하기 위해 findViewById 메서드를 호출합니다.
Button btn = (Button)findViewById(R.id.btn);
그리고 해당 버튼을 클릭했을 때 수행할 이벤트 핸들러를 등록하세요.
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
}
이벤트 핸들러에서는 activity_main.xml파일에 배치한 TextView와 EditText 컨트롤을 변수에 참조합니다. 그리고 EditText에 입력한 문자열을 얻기 위해 getText 메서드를 호출한 후에 toString 메서드를 호출합니다. 이 후에 TextView에 문자열을 설정하기 위해 setText 메서드를 호출합니다.
package com.example.ehclub.ex_button;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button btn = (Button)findViewById(R.id.btn);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
TextView tv = (TextView)findViewById(R.id.tv);
EditText et = (EditText)findViewById(R.id.et);
String s = et.getText().toString();
tv.setText(s);
et.setText("");
}
});
}
}
언제나휴일 추천 여행 및 산책
'Java 안드로이드 > 안드로이드' 카테고리의 다른 글
4. 기본 컨트롤 – 7. ToggleButton (0) | 2025.01.04 |
---|---|
4. 기본 컨트롤 – 6. Switch (0) | 2025.01.04 |
4. 기본 컨트롤 – 5. RadioButton (0) | 2025.01.04 |
4. 기본 컨트롤 – 4. CheckBox (0) | 2025.01.04 |
4. 기본 컨트롤 – 2. EditText (0) | 2025.01.04 |
4. 기본 컨트롤 – 1. TextView (0) | 2025.01.04 |
3. Layout – 4. GridLayout (0) | 2025.01.04 |
3. Layout – 3. TableLayout (0) | 2025.01.04 |