blob: dd0f0774e37f27ebb3c278f8f35e79cbbda5d1f9 [file] [log] [blame]
Emeric Vigier05e894e2012-08-20 13:53:02 -04001<?xml version="1.0" encoding="utf-8"?>
2<!--
3Copyright (C) 2004-2012 Savoir-Faire Linux Inc.
4
5Author: Adrien Beraud <adrien.beraud@gmail.com>
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 3 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21Additional permission under GNU GPL version 3 section 7:
22
23If you modify this program, or any covered work, by linking or
24combining it with the OpenSSL project's OpenSSL library (or a
25modified version of that library), containing parts covered by the
26terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
27grants you additional permission to convey the resulting work.
28Corresponding Source for a non-source form of such a combination
29shall include the source code for the parts of OpenSSL used as well
30as that of the covered work.
31 -->
32<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
33 xmlns:tools="http://schemas.android.com/tools"
34 android:layout_width="match_parent"
35 android:layout_height="match_parent"
36 android:orientation="vertical"
37 android:paddingLeft="8dp"
38 android:paddingRight="8dp" >
39
40 <Button
41 android:id="@+id/buttonInit"
42 android:layout_width="match_parent"
43 android:layout_height="wrap_content"
44 android:layout_alignParentTop="true"
45 android:onClick="onClick"
46 android:text="init" />
Emeric Vigierd5c17f52012-08-29 09:29:33 -040047
48 <TextView
49 android:id="@+id/textAccountID"
50 android:layout_width="wrap_content"
51 android:layout_height="wrap_content"
52 android:layout_alignParentLeft="true"
53 android:layout_below="@+id/buttonInit"
54 android:text="AccountID"
55 android:ems="10" />
56
57 <EditText
58 android:id="@+id/editAccountID"
59 android:layout_width="wrap_content"
60 android:layout_height="wrap_content"
61 android:layout_alignParentRight="true"
62 android:layout_toRightOf="@+id/textAccountID"
63 android:layout_below="@+id/buttonInit"
64 android:ems="10" />
65
66 <TextView
67 android:id="@+id/textCallID"
68 android:layout_width="wrap_content"
69 android:layout_height="wrap_content"
70 android:layout_alignParentLeft="true"
71 android:layout_below="@+id/editAccountID"
72 android:text="callID"
73 android:ems="10" />
74
75 <EditText
76 android:id="@+id/editCallID"
77 android:layout_width="wrap_content"
78 android:layout_height="wrap_content"
79 android:layout_alignParentRight="true"
80 android:layout_toRightOf="@+id/textCallID"
81 android:layout_below="@+id/editAccountID"
82 android:ems="10" />
83
84 <TextView
85 android:id="@+id/textTo"
86 android:layout_width="wrap_content"
87 android:layout_height="wrap_content"
88 android:layout_alignParentLeft="true"
89 android:layout_below="@+id/editCallID"
90 android:text="to"
91 android:ems="10" />
92
93 <EditText
94 android:id="@+id/editTo"
95 android:layout_width="wrap_content"
96 android:layout_height="wrap_content"
97 android:layout_alignParentRight="true"
98 android:layout_toRightOf="@+id/textTo"
99 android:layout_below="@+id/editCallID"
100 android:ems="10" />
101
102 <Button
103 android:id="@+id/buttonCall"
104 android:layout_width="match_parent"
105 android:layout_height="wrap_content"
106 android:layout_below="@+id/editTo"
107 android:onClick="onClick"
108 android:text="placeCall" />
Emeric Vigier05e894e2012-08-20 13:53:02 -0400109
Emeric Vigier62ca14d2012-08-24 11:05:09 -0400110 <TextView
111 android:id="@+id/callVoid_text"
112 android:layout_width="match_parent"
113 android:layout_height="wrap_content"
Emeric Vigierd5c17f52012-08-29 09:29:33 -0400114 android:layout_below="@+id/buttonCall"
Emeric Vigier62ca14d2012-08-24 11:05:09 -0400115 android:text="callVoidText" />
116
117 <Button
118 android:id="@+id/buttonCallVoid"
119 android:layout_width="match_parent"
120 android:layout_height="wrap_content"
121 android:layout_below="@+id/callVoid_text"
122 android:onClick="onClick"
123 android:text="CallVoid" />
124
125 <TextView
126 android:id="@+id/NewData_text"
127 android:layout_width="match_parent"
128 android:layout_height="wrap_content"
129 android:layout_below="@+id/buttonCallVoid"
130 android:layout_centerHorizontal="true"
131 android:text="getNewDataText" />
132
133 <Button
134 android:id="@+id/buttonGetNewData"
135 android:layout_width="match_parent"
136 android:layout_height="wrap_content"
137 android:layout_below="@+id/NewData_text"
138 android:onClick="onClick"
139 android:text="GetNewData" />
140
141 <TextView
142 android:id="@+id/DataString_text"
143 android:layout_width="match_parent"
144 android:layout_height="wrap_content"
145 android:layout_below="@+id/buttonGetNewData"
146 android:layout_centerHorizontal="true"
147 android:text="callbackString" />
148
149 <Button
150 android:id="@+id/buttonGetDataString"
151 android:layout_width="match_parent"
152 android:layout_height="wrap_content"
153 android:layout_below="@+id/DataString_text"
154 android:onClick="onClick"
155 android:text="GetDataString" />
156
Emeric Vigier05e894e2012-08-20 13:53:02 -0400157</RelativeLayout>