출처 : http://www.androidpub.com/576082
/drawable/ pattern_bg.xml 생성해주세요.
내용은 아래와 같이 넣으시면 됩니다.
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/bg_main_pattern"
android:tileMode="repeat"
/>
그리고 Layout에서
android:background에 pattern_bg 를 적용하시면 됩니다.
출처 :
http://www.androidpub.com/576082
/drawable/ pattern_bg.xml 생성해주세요.
내용은 아래와 같이 넣으시면 됩니다.
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/bg_main_pattern"
android:tileMode="repeat"
/>
그리고 Layout에서
android:background에 pattern_bg 를 적용하시면 됩니다.
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true" android:state_pressed="false"
android:drawable="@drawable/pattern_bg"/>
</selector>
이런식이 됩니다.
'프로그래밍 > 안드로이드' 카테고리의 다른 글
[안드로이드/Android] 안드로이드 기본 구성 요소 (0) | 2012.04.30 |
---|---|
[안드로이드 팁] ADB "Unable to open sync connection!" 에러 메시지 (0) | 2012.04.26 |
UncaughtExceptionHandler에 대한 정리 (0) | 2012.04.26 |
[Android] ADB 이용해서 패킷 덤프 뜨는 방법 [스크랩 자료] (0) | 2012.02.01 |
[안드로이드 전화번호부 저장화면 Call] 스크랩 자료 연락처 추가 화면 호출하기 (0) | 2012.01.02 |
[안드로이드 서비스] 스크랩자료 - 안드로이드 서비스에 대한 좋은 정리 자료 (0) | 2011.12.27 |
[안드로이드 KeyguardManager] 스크랩 자료 - 락스크린 관리 (0) | 2011.12.27 |
[안드로이드 Application 클래스] 스크랩 자료 (1) | 2011.12.27 |
[안드로이드 ContentObserver] 스크랩 자료 (0) | 2011.12.27 |