/[projects]/android/SmsSend/res/layout/main.xml
ViewVC logotype

Contents of /android/SmsSend/res/layout/main.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 745 - (show annotations) (download) (as text)
Tue May 25 13:54:28 2010 UTC (13 years, 11 months ago) by torben
File MIME type: text/xml
File size: 2737 byte(s)
import
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:orientation="vertical"
4 android:layout_width="fill_parent"
5 android:layout_height="fill_parent"
6 >
7
8
9 <Spinner
10 android:id="@+id/method"
11 android:layout_width="fill_parent"
12 android:layout_height="wrap_content"
13 android:prompt="@string/method_prompt"/>
14 <Button
15 android:id="@+id/selectNumber"
16 android:layout_width="fill_parent"
17 android:layout_height="wrap_content"
18 android:text="Select receipient"
19 />
20
21 <EditText android:id="@+id/origin"
22 android:layout_width="fill_parent"
23 android:layout_height="wrap_content"
24 android:text="from..."
25 android:selectAllOnFocus="true"
26
27 />
28
29 <EditText android:id="@+id/destination"
30 android:layout_width="fill_parent"
31 android:layout_height="wrap_content"
32 android:inputType="phone"
33 android:text="to..."
34 android:selectAllOnFocus="true"
35 />
36
37 <EditText android:id="@+id/message"
38 android:layout_width="fill_parent"
39 android:layout_height="wrap_content"
40 android:text="message..."
41 android:selectAllOnFocus="true"
42
43 android:minLines="3"
44 android:inputType="textMultiLine"/>
45
46
47 <LinearLayout
48 android:orientation="horizontal"
49 android:layout_width="fill_parent"
50 android:layout_height="wrap_content"
51 >
52
53 <TextView
54 android:layout_width="wrap_content"
55 android:layout_height="wrap_content"
56 android:layout_weight="1"
57 android:text="Count:"
58 />
59 <EditText android:id="@+id/count"
60 android:layout_width="wrap_content"
61 android:layout_height="wrap_content"
62 android:layout_weight="1"
63 android:inputType="number"
64 android:text="1"
65 />
66 </LinearLayout>
67
68 <LinearLayout
69 android:orientation="horizontal"
70 android:layout_width="fill_parent"
71 android:layout_height="wrap_content"
72 >
73
74 <TextView
75 android:layout_width="wrap_content"
76 android:layout_height="wrap_content"
77 android:layout_weight="1"
78 android:text="Interval:"
79 />
80 <EditText android:id="@+id/interval"
81 android:layout_width="wrap_content"
82 android:layout_height="wrap_content"
83 android:layout_weight="1"
84 android:inputType="number"
85 android:text="0"
86 android:selectAllOnFocus="true"
87 />
88 </LinearLayout>
89
90
91 <View
92 android:layout_width="fill_parent"
93 android:layout_height="wrap_content"
94 android:layout_weight="1"
95 />
96
97
98 <Button
99 android:id="@+id/send"
100 android:layout_width="fill_parent"
101 android:layout_height="wrap_content"
102 android:text="Send"
103 />
104
105 </LinearLayout>

  ViewVC Help
Powered by ViewVC 1.1.20