안드로이드 스타일 적용하기
- 스타일 : 일부분의 스타일을 정의.
main.xml 파일에서 적용하고 싶은 뷰에 선언.
① 원하는 스타일을 res/values 폴더에 xml 파일을 만들어서 작성한 후 이를 main.xml 파일에서 원하는 뷰에
적용하면 된다.
style.xml |
<?xml version="1.0" encoding="UTF-8"?> <resources> <style name="big_red_font"> <item name="android:textColor">#ff0000</item> <item name="android:textSize">20sp</item> </style> </resources> |
main.xml |
<?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/hello" /> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" style="@style/big_red_font" /> </LinearLayout> |
MainActivity.java |
package com.android; import android.app.Activity; import android.os.Bundle; public class MainActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); } } [출처] 안드로이드 스타일 적용하기.|작성자 shylove2456
|
'안드로이드 > 레이아웃(Layout)' 카테고리의 다른 글
[안드로이드] Timepicker(타임피커), Datepicker(데이트피커) 예제 (0) | 2018.01.17 |
---|---|
[Android] Strings.xml에서 개행하기 (0) | 2018.01.17 |
[Android] 안드로이드 액션바 색상/디자인 변경하기(Action Bar Color Change/Action Bar Customize) (0) | 2018.01.17 |
안드로이드 상단 회색(그레이) 색상 타이틀바 없애기 또는 레이블 넣기 (0) | 2018.01.17 |
리스트뷰의 주요 속성 살펴보기 (0) | 2018.01.17 |
안드로이드 버튼 스타일 (0) | 2018.01.17 |
안드로이드 버튼과 레이아웃에 배경 설정하기 (0) | 2018.01.17 |
안드로이드 버튼의 이미지 위치/버튼의 텍스트 위치/버튼의 주요 속성 (0) | 2018.01.17 |