Line | |
---|
1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
---|
3 | android:id="@+id/Screen"
|
---|
4 | android:layout_width="fill_parent"
|
---|
5 | android:layout_height="fill_parent" >
|
---|
6 |
|
---|
7 | <TextView
|
---|
8 | android:id="@+id/text"
|
---|
9 | android:layout_width="fill_parent"
|
---|
10 | android:layout_height="wrap_content"
|
---|
11 | android:layout_alignParentLeft="true"
|
---|
12 | android:layout_alignParentTop="true" /> |
---|
13 |
|
---|
14 | <ToggleButton
|
---|
15 | android:id="@+id/status"
|
---|
16 | android:layout_width="150dp"
|
---|
17 | android:layout_height="150dp"
|
---|
18 | android:layout_centerVertical="true"
|
---|
19 | android:layout_centerHorizontal="true"
|
---|
20 | android:onClick="onToggleClicked"
|
---|
21 | android:textOff="START"
|
---|
22 | android:textOn="STOP" />
|
---|
23 |
|
---|
24 | <Button
|
---|
25 | android:id="@+id/zend"
|
---|
26 | android:layout_width="match_parent"
|
---|
27 | android:layout_height="wrap_content"
|
---|
28 | android:layout_alignParentBottom="true"
|
---|
29 | android:layout_alignParentLeft="true"
|
---|
30 | android:text="Verzenden" />
|
---|
31 |
|
---|
32 | </RelativeLayout> |
---|
Note: See
TracBrowser
for help on using the repository browser.