검색결과 리스트
Android Resource에 해당되는 글 2건
- 2011.12.16 [Android] 대체 Resource
- 2011.12.16 [Android] Resource
글
대체 리소스란 그 환경이 변함에 따라 대체 한다는 의미이다.
예를 들어 화면을 회전 하였을 경우 거기에 맞게 변화하게 된다.
여기에서 기본 적으로 가로 형태를 돌렸을 경우 -land 폴더를 찾아가고 -port 경우는 세로이다.
-port 가 없을 경우에는 layout 폴더를 참조를 한다.
먼저 res/layout-land 폴더를 만들고 layout 내의 xml과 동일한 내용을 적용을 시켜보자 코드는 다음과 같다.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
>
<Button
android:layout_width="100px"
android:layout_height="wrap_content"
android:text="1번"
/>
<Button
android:layout_width="100px"
android:layout_height="wrap_content"
android:text="2번"
/>
</LinearLayout>
이 코드를 실행하여 에뮬레이터에서 Ctrl + F11 을 누르면 화면의 방향이 변하는데 이를 실행함서 그 내용을 확인 할 수 있다.
설정
트랙백
댓글
글
문자열, 이미지, 사운드 등이 그 예이다.
리소스 타입은 이클립스 왼편의 res 아래에 있는 내용들이다. 물론 추가를 하여 이용 할 수도 있다.
리소스 명칭은 복수형을 의미하는 s가 접미로 붙고 모두 소문자여야만 한다.
문자열은 strings, 색상은 colors, 스타일과 테마는 styles, 배열은 arrays, 크기 정보들은 dimens 에 정의 된다.
실제 예를 들어
strings에 문자열 하나, dimes에 크기 정보 하나를 넣어 두고 다음과 같은 코드를 실행 해 보면 그 결과를 확인 할 수 있다.
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
android:textSize="@dimen/size"
/>
RECENT COMMENT