Android - Rating Bar,Seek Bar
2020. 9. 20. 20:30ㆍ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
|
<?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">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="버튼"
android:id="@+id/btn"/>
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button" />
<EditText
android:id="@+id/editTextTextPersonName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPersonName"
android:text="Name" />
<EditText
android:id="@+id/editTextTextPassword2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPassword" />
<RatingBar
android:id="@+id/ratingBar2"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<SeekBar
android:id="@+id/seekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
|
cs |
간단하게 Bar 형태의 위젯들을 추가해 보았고 layout_width (가로), layout_height(세로)에 값을 적용해 보았다.
match_parent는 단어 그대로 제일 큰 기본 레이아웃에 match 시켜서 화면에 꽉 차게 해주는 것이고
wrap_content는 위젯의 기본값을 적용해주는 값이다. 그리고 id를 주는 데 id를 java code에서
id를 넘겨 받아서 Listener를 적용할 수도 있고 여러 활용이 가능하게 해 준다.
그리고 기본 레이아웃에 orientation='vertical'을 줬는데 이것은 위젯들을 수직으로 적용이 가능하게 해 준다.
즉, 위젯들을 하나 생성하고 줄 바꿈을 적용해 그 밑에 다음 위젯이 생성되게 해주는 값이다.
'Android' 카테고리의 다른 글
Android - Intent (0) | 2020.09.20 |
---|---|
Android - ClickListener (0) | 2020.09.20 |
Android - findViewById,xml에 String 적용 (0) | 2020.09.20 |
Android - Basic (0) | 2020.09.20 |