- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Link
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[안드로이드] TextView 에서의 줄간격 설정하기 본문
일반적인 TextView
lineSpacingExtra의 설정시
라인의 간격을 더하기로 계산한다.
[Text_height 값] + [LindSpacing 값]
lineSpacingMultiplier의 설정시
라인의 간격을 곱하기로 계산한다.
[ Text_height 값] * [ LindSpacing 값]
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/aticle_content" /> </LinearLayout> |
lineSpacingExtra의 설정시
라인의 간격을 더하기로 계산한다.
[Text_height 값] + [LindSpacing 값]
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/aticle_content" android:lineSpacingExtra="15dip" /> </LinearLayout> |
lineSpacingMultiplier의 설정시
라인의 간격을 곱하기로 계산한다.
[ Text_height 값] * [ LindSpacing 값]
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/aticle_content" android:lineSpacingMultiplier="2.5" /> </LinearLayout> |
[출처] <TextView>에서의 줄간격 설정하기|작성자 뮤즈홀릭
'★─Programing > ☆─Android' 카테고리의 다른 글
[안드로이드] Bluetooth UUID (0) | 2013.11.19 |
---|---|
[안드로이드] TextView 줄바꿈을 글자 단위로 하기 (1) | 2013.11.19 |
[안드로이드] TextView 문자단위로 개행하기 (0) | 2013.11.19 |
[안드로이드] Context 추상 클래스 (0) | 2013.08.16 |
[안드로이드] WebView 높이 wrap_content 주는 방법 (0) | 2013.08.16 |
Comments