Android - ClickListener
2020. 9. 20. 20:43ㆍAndroid
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
<?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=".MainActivity"
android:orientation="vertical">
<!-- EditText 위젯 생성
ID : et
TEXT SIZE : 20sp
-->
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/et"
android:textSize="20sp"/>
<!-- Button 위젯 생성
ID : btn
TEXT : OK
TEXTSIZE : 30sp
-->
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/btn"
android:text="OK"
android:textSize="30sp"/>
</LinearLayout>
//-------------------------java code---------------------
package com.example.and0901_ch02_baseapp2;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
EditText et;
Button btn;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//EditText와 Button 위젯 ID 가져오기
et=findViewById(R.id.et);
btn=findViewById(R.id.btn);
//Button 위젯에 OnClickListener 연결
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
//EditText에 입력된 텍스트를 Toast로 출력
// Toast.makeText(MainActivity.this,et.getText(), Toast.LENGTH_SHORT).show();
//EditText 에 입력된 텍스트를 String 타입 변수 str에 저장 후 Toast 로 출력
String str=et.getText().toString();
Toast.makeText(MainActivity.this,str, Toast.LENGTH_SHORT).show();
}
});
}
}
|
cs |
EditText의 값을 받아와서 Toast로 출력을 해보는 걸 해보았는데 EdtiText를 getText()를 한다면 리턴 값이
Editeble 이기 때문에 toString()을 해줘서 받아온다.
'Android' 카테고리의 다른 글
Android - Intent (0) | 2020.09.20 |
---|---|
Android - findViewById,xml에 String 적용 (0) | 2020.09.20 |
Android - Rating Bar,Seek Bar (0) | 2020.09.20 |
Android - Basic (0) | 2020.09.20 |