=================================
=================================
=================================
출처:
http://jetblog.tistory.com/tag/%3Cinclude%20/%3E
<com.android.launcher.Workspace android:id="@+id/workspace" android:layout_width="fill_parent" android:layout_height="fill_parent" launcher:defaultScreen="1"> </com.android.launcher.Workspace>
<!-- override the layout height and width --> <include layout="@layout/image_holder" android:layout_height="fill_parent" android:layout_width="fill_parent" /> <!-- do not override layout dimensions; inherit them from image_holder --> <include layout="@layout/image_holder" />
주의안드로이드 위젯의 dimension(폭과 높이)를 오버리아드 하고자 한다면 android:layout_height와 android:layout_width 속성을 다 오버라이드해야 합니다.어느 한 가지 속성만 오버라이드 해서는 안됩니다. 한 가지만 오버라이드 하게 되면 아무 효과도 나타나지 않습니다. (weight 같은 이외의 속성들은 소스레이아웃에서 상속됩니다.)
=================================
=================================
=================================
출처: http://eraserdev.tistory.com/entry/Layout-Include-%ED%95%98%EA%B8%B0
예전에 http://eraserdev.tistory.com/9 에서를 XML에서 처리가 가능한걸 오늘 알았다.
역시 무식하면 손이 고생이다.
- 인크루드 될 레이아웃
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/line4"
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<Button android:id="@+id/configBT"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:textSize="10px" />
<TextView android:id="@+id/updateTimeTV"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="14px"
android:textColor="#BBBBBB"
android:text="Updated : 00:00" />
<Button android:id="@+id/selfupdateBT"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:textSize="10px" />
</FrameLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/mainRL"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<include layout="@layout/include_bottom"/>
</RelativeLayout >
=================================
=================================
=================================
'스마트기기개발관련 > 안드로이드 개발' 카테고리의 다른 글
안드로이드 Group List 관련 (0) | 2011.05.17 |
---|---|
안드로이드 로딩하면 띄우기 관련 (0) | 2011.05.17 |
[번역] 안드로이드 Layout Tricks (0) | 2011.05.12 |
안드로이드 UI - droiddraw (0) | 2011.05.02 |
안드로이드 개발툴 UI 관련 (0) | 2011.05.02 |
댓글 영역