고똘이의 IT 개발이야기

- 안드로이드 텍스트 변경 방법( setText() ) -

 

안녕하세요.

 

오늘은 안드로이드 setText()에 대해서 알아 보겠습니다.

 

setText()의 경우 Text Object에 텍스트를 선언 하는 메서드 입니다.

 

사용법은 아래의 소스에서 설명 드리겠습니다.

 

1. layout xml에 TextView 선언

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
 
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="테스트1"
        android:id="@+id/test1"
        />
 
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="테스트2"
        android:id="@+id/test2"
        />
 
</LinearLayout>
 
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

 

2. 위의 TextView로 선언한 id를 매핑 후 setText()로 텍스트 변경.

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
 
public class MainActivity extends AppCompatActivity{
 
    TextView test1; // 선언
    TextView test2; // 선언
 
 
    protected void onCreate(Bundle savedInstanceState) {
 
        super.onCreate(savedInstanceState);
 
        setContentView(R.layout.activity_main);
 
        // id 매핑
        test1= (TextView)findViewById(R.id.test1);
 
        // id 매핑
        test2= (TextView)findViewById(R.id.test2);
 
        
        // 텍스트 set
        test1.setText("테스트1");
 
        // 텍스트 set
         test2.setText("테스트2");
      
    }
 
}
 
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

 

 

감사합니다.

 

이 글을 공유합시다

facebook twitter googleplus kakaoTalk kakaostory naver band