안드로이드 TextView에서의 줄간격 설정하기
안드로이드 개발시에 TextView의 줄간격을 설정하는 방법을 살펴 보겠습니다.
일반적인 TextView 코드.
android:orientation="vertical" >
|
lineSpacingExtra의 속성을 이용하여 TextView의 줄간격 설정
라인의 간격을 더하기로 계산한다.
[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=" TextView 줄간격 설정하기 " android:lineSpacingExtra="15dip" /> </LinearLayout> |
lineSpacingMultiplier 속성을 이용하여 TextView의 줄간격 설정
줄의 간격을 곱하기로 계산한다.
[ 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=" TextView 줄간격 설정하기 " android:lineSpacingMultiplier="2.5" /> </LinearLayout> |
'프로그래밍 > 안드로이드' 카테고리의 다른 글
안드로이드 [초보플밍] - Android Requires .class compatibility set to 5.0. Please fix project properties 에러 해결하기 (1) | 2010.10.07 |
---|---|
안드로이드 이클립스 외부 자바 라이브러리 사용하기 (0) | 2010.10.07 |
Use Android WebView and Google Chart API to display data (1) | 2010.10.07 |
안드로이드 MAC ADDRESS 가지고 오기 (0) | 2010.10.06 |
안드로이드 [초보플밍] - com.google.android.maps 패키지 오류 (0) | 2010.10.05 |
위치 기반 서비스 (0) | 2010.10.05 |
안드로이드 [초보플밍] - adb uninstall com.example.android.notepad 에러 (1) | 2010.10.05 |
안드로이드 [초보플밍] - java.io.IOException : Unable to upload file : null 해결책 (0) | 2010.10.05 |
안드로이드 강좌 6 - Java 코드(Code)에서 뷰(View) 다루기[회색] (0) | 2010.10.03 |