source: trunk/TagTracker/res/layout/main.xml @ 6

Last change on this file since 6 was 6, checked in by remons, 13 years ago
File size: 1.2 KB
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="match_parent"
17        android:layout_height="200dp"
18        android:layout_marginLeft="20dp"
19        android:layout_marginRight="20dp"
20        android:layout_alignParentLeft="true"
21        android:layout_centerVertical="true"
22        android:onClick="onToggleClicked"
23        android:textOff="START"
24        android:textOn="STOP" />
25
26    <Button
27        android:id="@+id/zend"
28        android:layout_width="match_parent"
29        android:layout_height="wrap_content"
30        android:layout_alignParentBottom="true"
31        android:layout_alignParentLeft="true"
32        android:text="Verzenden" />
33
34</RelativeLayout>
Note: See TracBrowser for help on using the repository browser.