배경 패턴이미지 적용

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

패턴이미지를 LinearLayout 의 background 속성에 적용을 하면 전체화면에 맞게 늘어난다.
원래 크기의 패턴 이미지를 반복해서 백그라운드에 뿌려주고 싶을때 아래와 같이 한다.

drawable 폴더에 pattern_bg.xml 파일을 생성한 후 아래 코드를 삽입.

1
2
3
4
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/pattern_image"
    android:tileMode="repeat"
/>


이제 적용할 Activity의 LinearLayout 속성에 위 XML 파일을 적용한다.

1
2
3
4
5
<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/pattern_bg">
</LinearLayout>

[출처] 아마그래머 (http://shstarkr.tistory.com/160)

반응형

댓글()