Notice
Recent Posts
Recent Comments
Link
설.현.아빠
화면의 가로보기 & 세로보기 XML 파일 작성하기. 본문
res/layout 디렉토리와 res/layout-land디렉토리에 각각의 가로 세로 화면 XML파일을 작성한다. 아래와 같이 작성하였을 경우 vertical.xml은 화면이 세로일때 버튼을 세로로 정렬시키고, horizontal.xml은 화면이 가로일때 버튼을 가로로 정렬시키게 된다. res/layout/vertical.xml <?xml version="1.0 encoding="utf-8"?> <LinearLayout android:orientation = "vertical" ... > <Button ... /> <Button ... /> </LinearLayout> res/layout/horizontal.xml <?xml version="1.0 encoding="utf-8"?> <LinearLayout android:orientation = "horizontal" ... > <Button ... /> <Button ... /> </LinearLayout>
'안드로이드 > Screen & Resolution' 카테고리의 다른 글
Android Resolution... (0) | 2011.02.11 |
---|---|
Title Bar 출력하지 않기. (0) | 2011.02.11 |
화면 회전시 onSaveInstanceState, onRestoreInstanceState 사용하기. (2) | 2011.02.11 |
화면 고정(가로 또는 세로로만 화면 표시되도록 설정) (3) | 2011.02.11 |
[Rotation] 화면 가로, 세로 보기 (3) | 2011.02.11 |
Comments