Last change
on this file since 3 was
3,
checked in by remons, 13 years ago
|
Added current project, and a APK.
|
File size:
1.2 KB
|
Line | |
---|
1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <RelativeLayout
|
---|
3 | xmlns:android="http://schemas.android.com/apk/res/android"
|
---|
4 | android:layout_width="fill_parent"
|
---|
5 | android:layout_height="fill_parent"
|
---|
6 | android:id="@+id/Screen" >
|
---|
7 | <TextView
|
---|
8 | android:id="@+id/text"
|
---|
9 | android:layout_width="fill_parent"
|
---|
10 | android:layout_height="wrap_content"
|
---|
11 | android:layout_above="@+id/zend"
|
---|
12 | android:layout_alignParentLeft="true"
|
---|
13 | android:layout_alignParentTop="true" />
|
---|
14 |
|
---|
15 | <Button
|
---|
16 | android:id="@+id/zend"
|
---|
17 | android:layout_width="match_parent"
|
---|
18 | android:layout_height="wrap_content"
|
---|
19 | android:layout_above="@+id/status"
|
---|
20 | android:layout_alignParentLeft="true"
|
---|
21 | android:text="Verzenden" />
|
---|
22 |
|
---|
23 | <ToggleButton
|
---|
24 | android:id="@+id/status"
|
---|
25 | android:layout_width="match_parent"
|
---|
26 | android:layout_height="wrap_content"
|
---|
27 | android:layout_alignParentBottom="true"
|
---|
28 | android:layout_alignParentLeft="true"
|
---|
29 | android:onClick="onToggleClicked"
|
---|
30 | android:text="ToggleButton"
|
---|
31 | android:textOff="Start"
|
---|
32 | android:textOn="Stop" />
|
---|
33 | </RelativeLayout> |
---|
Note: See
TracBrowser
for help on using the repository browser.