]> Pileus Git - ~andy/csm213a-hw/blob - syc/res/layout/xively_cfg_layout.xml
Add Android app from Yue
[~andy/csm213a-hw] / syc / res / layout / xively_cfg_layout.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:orientation="horizontal" >
6
7     <TableLayout
8         android:layout_width="match_parent"
9         android:layout_height="match_parent" >
10
11         <TableRow
12             android:id="@+id/tableRow1"
13             android:layout_width="wrap_content"
14             android:layout_height="wrap_content" >
15
16             <TextView
17                 android:id="@+id/textView1"
18                 android:layout_width="wrap_content"
19                 android:layout_height="wrap_content"
20                 android:paddingLeft="10dp"
21                 android:paddingRight="10dp"
22                 android:text="Xively Feed    :"
23                 android:textAppearance="?android:attr/textAppearanceLarge" />
24
25             <EditText
26                 android:id="@+id/xvlFeed"
27                 android:layout_width="wrap_content"
28                 android:layout_height="wrap_content"
29                 android:ems="16" >
30
31                 <requestFocus />
32             </EditText>
33
34         </TableRow>
35
36         <TableRow
37             android:id="@+id/tableRow2"
38             android:layout_width="wrap_content"
39             android:layout_height="wrap_content" >
40
41             <TextView
42                 android:id="@+id/textView2"
43                 android:layout_width="wrap_content"
44                 android:layout_height="wrap_content"
45                 android:paddingLeft="10dp"
46                 android:text="Xively ApiKey:"
47                 android:textAppearance="?android:attr/textAppearanceLarge" />
48
49             <EditText
50                 android:id="@+id/xvlKey"
51                 android:layout_width="wrap_content"
52                 android:layout_height="wrap_content"
53                 android:ems="10" />
54
55         </TableRow>
56
57         <TableRow
58             android:id="@+id/tableRow3"
59             android:layout_width="wrap_content"
60             android:layout_height="wrap_content" >
61         </TableRow>
62
63         <TableRow
64             android:id="@+id/tableRow4"
65             android:layout_width="wrap_content"
66             android:layout_height="wrap_content" >
67         </TableRow>
68     </TableLayout>
69
70 </LinearLayout>