]> rtime.felk.cvut.cz Git - orte.git/blob - orte/Robot_Demo/res/layout/status_dialog.xml
23f398b7bcab1e69e583ca6c62f5d37fa8f599a8
[orte.git] / orte / Robot_Demo / res / layout / status_dialog.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:layout_width="match_parent"
4     android:layout_height="match_parent"
5     android:gravity="center"
6     android:orientation="vertical" >
7
8     <TableLayout
9         android:layout_width="match_parent"
10         android:layout_height="match_parent" >
11
12         <TableRow
13             android:id="@+id/tableRow1"
14             android:layout_width="match_parent"
15             android:layout_height="match_parent" >
16
17             <TextView
18                 android:id="@+id/textView1"
19                 android:layout_width="match_parent"
20                 android:layout_height="match_parent"
21                 android:text="3.3V" />
22
23             <EditText
24                 android:id="@+id/editText1"
25                 android:layout_width="match_parent"
26                 android:layout_height="match_parent"
27                 android:clickable="false"
28                 android:focusable="false"
29                 android:focusableInTouchMode="false"
30                 android:minWidth="70dp" />
31
32         </TableRow>
33
34         <TableRow
35             android:id="@+id/tableRow2"
36             android:layout_width="match_parent"
37             android:layout_height="match_parent" >
38
39             <TextView
40                 android:id="@+id/textView2"
41                 android:layout_width="match_parent"
42                 android:layout_height="match_parent"
43                 android:text="5V" />
44
45             <EditText
46                 android:id="@+id/editText2"
47                 android:layout_width="match_parent"
48                 android:layout_height="match_parent"
49                 android:clickable="false"
50                 android:focusable="false"
51                 android:focusableInTouchMode="false"
52                 android:minWidth="70dp" />
53
54         </TableRow>
55
56         <TableRow
57             android:id="@+id/tableRow3"
58             android:layout_width="match_parent"
59             android:layout_height="match_parent" >
60
61             <TextView
62                 android:id="@+id/textView3"
63                 android:layout_width="match_parent"
64                 android:layout_height="match_parent"
65                 android:text="8V" />
66
67             <EditText
68                 android:id="@+id/editText3"
69                 android:layout_width="match_parent"
70                 android:layout_height="match_parent"
71                 android:clickable="false"
72                 android:focusable="false"
73                 android:focusableInTouchMode="false"
74                 android:minWidth="70dp" />
75
76         </TableRow>
77
78         <TableRow
79             android:id="@+id/tableRow4"
80             android:layout_width="match_parent"
81             android:layout_height="match_parent" >
82
83             <TextView
84                 android:id="@+id/textView4"
85                 android:layout_width="match_parent"
86                 android:layout_height="match_parent"
87                 android:text="BAT" />
88
89             <EditText
90                 android:id="@+id/editText4"
91                 android:layout_width="match_parent"
92                 android:layout_height="match_parent"
93                 android:clickable="false"
94                 android:focusable="false"
95                 android:focusableInTouchMode="false"
96                 android:minWidth="70dp" />
97
98         </TableRow>
99
100     </TableLayout>
101
102     <Button
103         android:id="@+id/button1"
104         android:layout_width="match_parent"
105         android:layout_height="match_parent"
106         android:text="OK" />
107
108 </LinearLayout>