03.
android:layout_width
=
"match_parent"
04.
android:layout_height
=
"match_parent"
>
05.
06.
<
Button
07.
android:id
=
"@+id/button1"
08.
android:layout_width
=
"wrap_content"
09.
android:layout_height
=
"wrap_content"
10.
android:layout_alignParentTop
=
"true"
11.
android:layout_centerHorizontal
=
"true"
12.
android:layout_marginTop
=
"135dp"
13.
android:text
=
"Button"
/>
14.
15.
<
EditText
16.
android:id
=
"@+id/editText1"
17.
android:layout_width
=
"wrap_content"
18.
android:layout_height
=
"wrap_content"
19.
android:layout_alignBottom
=
"@+id/button1"
20.
android:layout_alignRight
=
"@+id/button1"
21.
android:layout_marginBottom
=
"56dp"
22.
android:layout_marginRight
=
"58dp"
23.
android:ems
=
"2"
24.
android:inputType
=
"time"
/>
25.
26.
<
EditText
27.
android:id
=
"@+id/editText2"
28.
android:layout_width
=
"wrap_content"
29.
android:layout_height
=
"wrap_content"
30.
android:layout_alignBaseline
=
"@+id/editText1"
31.
android:layout_alignBottom
=
"@+id/editText1"
32.
android:layout_alignLeft
=
"@+id/button1"
33.
android:layout_marginLeft
=
"50dp"
34.
android:ems
=
"2"
35.
android:inputType
=
"time"
/>
36.
37.
<
TextView
38.
android:id
=
"@+id/textView1"
39.
android:layout_width
=
"wrap_content"
40.
android:layout_height
=
"wrap_content"
41.
android:layout_alignBottom
=
"@+id/editText1"
42.
android:layout_centerHorizontal
=
"true"
43.
android:text
=
":"
/>
44.
45.
</
RelativeLayout
>