배경화면 적용하기 (레이아웃 style)

프로그래밍/Android (Java)|2015. 1. 27. 10:58
반응형

res/values/styles.xml 파일에 아래와 같이 정의 해놓고


<resources>


    <style name="AppTheme" parent="android:Theme.Light" />


    <style name="IntroBG">

        <item name="android:background">@drawable/sysdocu_intro_bg</item>

        <item name="android:layout_width">match_parent</item>

        <item name="android:layout_height">match_parent</item>

    </style>


</resources> 


레이아웃 파일에서 가져다 쓰면 됩니다.


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    style="@style/IntroBG"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:orientation="vertical">


(생략) 


* 그냥 android:background="#ffffe4" 와 같은 색상 지정이나 src 를 통한 배경 가져오기도 가능합니다.

반응형

댓글()