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

Last change on this file was 8, checked in by jelledj, 13 years ago

button testing

File size: 1.1 KB
RevLine 
[3]1<?xml version="1.0" encoding="utf-8"?>
[4]2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:id="@+id/Screen"
[3]4    android:layout_width="fill_parent"
[4]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"
[8]18        android:layout_centerVertical="true"
19        android:layout_centerHorizontal="true"
[4]20        android:onClick="onToggleClicked"
[8]21        android:textOff="START"
[4]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.