안드로이드 스타일 적용하기

2018. 1. 17. 19:40 안드로이드/레이아웃(Layout)

- 스타일 : 일부분의 스타일을 정의.

     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);

}

}

 


출처 : http://blog.naver.com/shylove2456/150110221339