본문 바로가기

개발도구/aOS - 안드로이드 개발

AbsoulteLayout

 <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<Button 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/btn"
    android:text="PushButton"
    />
   
<TextView 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="15px"
    android:text="하이하이하이하이"
    />
</FrameLayout>

'개발도구 > aOS - 안드로이드 개발' 카테고리의 다른 글

이미지 와 이미지 사이 간격 없애기  (0) 2011.05.17
Layout 고급  (0) 2011.05.17
TableLayout  (0) 2011.05.17
RelativeLayout  (0) 2011.05.17
Android intent get 값 받아 오기  (0) 2011.05.16