Notice
Recent Posts
Recent Comments
Link
투케이2K
185. (AndroidStudio/android/java) textView 텍스트뷰 기본 속성 설명 - 텍스트, 색상, 폰트 굵기, 정렬, 배경 설정 본문
Android
185. (AndroidStudio/android/java) textView 텍스트뷰 기본 속성 설명 - 텍스트, 색상, 폰트 굵기, 정렬, 배경 설정
투케이2K 2021. 9. 15. 08:11[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : java
[소스 코드]
<TextView
android:layout_width="200dp"
android:layout_height="50dp"
android:text="텍스트 중앙 정렬"
android:textColor="#ffffff"
android:textStyle="bold"
android:textSize="10sp"
android:gravity="center"
android:background="#ff00ff"/>
<!-- text : 텍스트 뷰 값을 설정 -->
<!-- textColor : 텍스트 색상 설정 -->
<!-- textStyle : 텍스트 폰트 굵기 설정 -->
<!-- textSize : 텍스트 크기 설정 -->
<!-- gravity : 텍스트 정렬 설정
<!-- [center = 세로, 가로 center / top|center = 세로 top, 가로 center / bottom|center = 세로 bottom, 가로 center] -->
<!-- background : 배경색 설정 -->
반응형
'Android' 카테고리의 다른 글
Comments