리비전 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> |
---|