added DTW to app
[gsk.git] / GestureDetectionApp / GestureSensitiveControl / res / layout / main.xml
blob9b41c5db34d095b9e36b23b466ed10deb06e1501
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3         android:orientation="vertical" android:layout_width="fill_parent"
4         android:layout_height="fill_parent">
5         <TextView android:layout_width="fill_parent" android:text="Connect to Server ! "
6                 android:layout_height="wrap_content" android:id="@+id/lbInformation" />
7         <TextView android:layout_width="fill_parent"
8                 android:text="-------------------------------------------------"
9                 android:layout_height="wrap_content" android:id="@+id/lbLine" />
10         <LinearLayout android:orientation="horizontal"
11                 android:layout_width="fill_parent" android:layout_height="wrap_content">
12                 <Button android:text="Find Server" android:layout_width="wrap_content"
13                         android:layout_height="wrap_content" android:id="@+id/btnFindServer" />
14                 <Button android:text="Close App" android:layout_width="wrap_content"
15                         android:layout_height="wrap_content" android:id="@+id/btnCloseApp" />
16         </LinearLayout>
17         <LinearLayout android:orientation="horizontal"
18                 android:layout_width="fill_parent" android:layout_height="wrap_content">
19                 <EditText android:layout_width="200px" android:text="0.0.0.0"
20                         android:layout_height="wrap_content" android:id="@+id/txtServerIp" />
21                 <Button android:text="Connect" android:layout_width="wrap_content"
22                         android:layout_height="wrap_content" android:id="@+id/btnConnect"
23                         android:enabled="true" />
24         </LinearLayout>
25         <LinearLayout android:orientation="horizontal"
26                 android:layout_width="fill_parent" android:layout_height="wrap_content">
27                 <Button android:text="Dev-Message 1" android:layout_width="wrap_content"
28                         android:layout_height="wrap_content" android:id="@+id/btnSendDevMessag1"
29                         android:enabled="false" />
30                 <Button android:text="Dev-Message 2" android:layout_width="wrap_content"
31                         android:layout_height="wrap_content" android:enabled="false"
32                         android:id="@+id/btnSendDevMessag2" />
33         </LinearLayout>
34         <Button android:text="Start Gesture" android:id="@+id/btnStartGesture"
35                 android:enabled="true" android:layout_height="80dip"
36                 android:layout_width="fill_parent" />
37         <Button android:text="End Gesture" android:id="@+id/btnEndGesture"
38                 android:enabled="true" android:layout_height="80dip"
39                 android:layout_width="fill_parent" />
41         <TextView android:layout_width="fill_parent" android:text="Accelerometer"
42                 android:layout_height="wrap_content" android:id="@+id/lbAcceleration" />
43         <TextView android:layout_width="fill_parent" android:text="Orientation"
44                 android:layout_height="wrap_content" android:id="@+id/lbOrientation" />
45         <TextView android:layout_width="fill_parent" android:text="Gyroscope"
46                 android:layout_height="wrap_content" android:id="@+id/lbGyroscope" />
47 </LinearLayout>