반응형
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
|
<?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"
android:orientation="vertical"
tools:context=".MainActivity">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#3F51B5"
android:textSize="20sp"
android:text="세민짱."/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#E91E63"
android:textSize="20sp"
android:text="세민짱2."/>
</LinearLayout>
|
cs |
1. LinearLayout : 레이아웃 중 많이 사용된다. 위젯을 가로 또는 세로 연속적으로 배치하는 레이아웃.
1) orientation : 배치할 방향을 의미한다. ( vertical = 세로, horizontal = 가로 )
2. TextView : 텍스트 출력 기능
1) layout_width : 가로
2) layout_height : 세로
->match_parent : 부모의 길이만큼 따라함
->wrap_content : 텍스트 크기만큼만
3) textColor : 텍스트 색상 ( #ffffff )
4) textSize : 텍스트 크기 ( 20sp )
5) text : 텍스트 내용 입력
반응형
'Legacy' 카테고리의 다른 글
[안드로이드 스튜디오 독학#5] SharedPreferences (0) | 2021.01.08 |
---|---|
[안드로이드 스튜디오 독학#4] ListView (0) | 2021.01.05 |
[안드로이드 스튜디오 독학#3] Intent, ImageView, Toast (0) | 2021.01.05 |
[안드로이드 스튜디오 독학#2-1] 또 다른 OnClick 구현 (0) | 2021.01.05 |
[안드로이드 스튜디오 독학#2] EditText & Button (0) | 2021.01.04 |