안슈/1강/토스트메세지,텍뷰,에딧텍뷰
- 폐기자료/날림 코딩공부
- 2020. 2. 10.
버튼클릭 - >에딧텍스트의 글자를 텍뷰에 보여주기
안드로이드 스튜디오 내용
굵은 글자가 기본 코드에서 추가한 내용입니다!~
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
|
package com.example.lec02;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void btnClick(View view){
Toast.makeText(getApplicationContext(),"하잇",Toast.LENGTH_SHORT).show();
TextView textVV = (TextView) findViewById(R.id.textView);
EditText editTT = (EditText) findViewById(R.id.editText);
textVV.setText(editTT.getText().toString());
}
}
|
설명
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
|
package com.example.lec02;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void btnClickk(View view){
버튼의 onCick속성 이름이 [btnClickk]인/ 버튼을 클릭하면 아래를 실행해라
Toast.makeText(getApplicationContext(),"하잇",Toast.LENGTH_SHORT).show();
토스트 메세지 보여주기 명령어/
TextView textVV = (TextView) findViewById(R.id.textView);
텍스트뷰 타입 [textVV]라는 변수에 에 [textView]라는 아이디를 갖고있는애를 넣어라
EditText editTT = (EditText) findViewById(R.id.editText);
에딧텍스트 타입 [editTT]라는 변수에 [editText]라는 아이디를 갖고 있는 애를 넣어라
textVV.setText(editTT.getText().toString());
[textVV]에 텍스트를 정해라 ( editTT에 텍스트를 얻어라,스트링 타입으로 )
}
}
|
'폐기자료 > 날림 코딩공부' 카테고리의 다른 글
안슈 /3강 /for문 활용 2 (0) | 2020.02.21 |
---|---|
안슈 3강/for 문 활용1 (0) | 2020.02.21 |
홍드로이드/14강 암람다이얼로그 (0) | 2020.02.12 |
안슈/2강/if문 활용2 (0) | 2020.02.12 |
안슈/2강/if문활용 1 (0) | 2020.02.12 |