root/trunk/03.LayoutTest/res/layout/framelayout.xml

리비전 11, 0.7 kB (mefour에 의해 체크인됨, 15 년 전)

--

Line 
1 <?xml version="1.0" encoding="utf-8"?>
2 <FrameLayout
3   xmlns:android="http://schemas.android.com/apk/res/android"
4   android:layout_width="200px"
5   android:layout_height="250px"
6   >
7   <TextView
8         android:layout_width="fill_parent"
9         android:layout_height="wrap_content"
10         android:text="@string/hello"/>
11  
12   <Button       
13         android:id="@+id/b"
14         android:layout_width="wrap_content"
15         android:layout_height="wrap_content"
16         android:text="button"
17         android:gravity="bottom"
18         android:layout_gravity="bottom"/>
19                
20   <EditText
21         android:id="@+id/et"
22         android:layout_width="wrap_content"
23         android:layout_height="wrap_content"
24         android:text="EditText"
25         android:layout_gravity="right"/>
26  
27 </FrameLayout>
참고: 소스 브라우저를 사용하면서 도움이 필요하다면, TracBrowser를 참고하십시오.