blob: 6df0a81850cbbfa4f4747d24d4cf1dea1845c114 [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" />
47
48 <Button
49 android:id="@+id/buttonCall"
50 android:layout_width="match_parent"
51 android:layout_height="wrap_content"
52 android:layout_below="@+id/buttonInit"
53 android:onClick="onClick"
54 android:text="call" />
55
56 <Button
57 android:id="@+id/buttonTest1"
58 android:layout_width="match_parent"
59 android:layout_height="wrap_content"
60 android:layout_below="@+id/buttonCall"
61 android:onClick="onClick"
62 android:text="test1" />
63
Emeric Vigier62ca14d2012-08-24 11:05:09 -040064 <TextView
65 android:id="@+id/callVoid_text"
66 android:layout_width="match_parent"
67 android:layout_height="wrap_content"
68 android:layout_below="@+id/buttonTest1"
69 android:text="callVoidText" />
70
71 <Button
72 android:id="@+id/buttonCallVoid"
73 android:layout_width="match_parent"
74 android:layout_height="wrap_content"
75 android:layout_below="@+id/callVoid_text"
76 android:onClick="onClick"
77 android:text="CallVoid" />
78
79 <TextView
80 android:id="@+id/NewData_text"
81 android:layout_width="match_parent"
82 android:layout_height="wrap_content"
83 android:layout_below="@+id/buttonCallVoid"
84 android:layout_centerHorizontal="true"
85 android:text="getNewDataText" />
86
87 <Button
88 android:id="@+id/buttonGetNewData"
89 android:layout_width="match_parent"
90 android:layout_height="wrap_content"
91 android:layout_below="@+id/NewData_text"
92 android:onClick="onClick"
93 android:text="GetNewData" />
94
95 <TextView
96 android:id="@+id/DataString_text"
97 android:layout_width="match_parent"
98 android:layout_height="wrap_content"
99 android:layout_below="@+id/buttonGetNewData"
100 android:layout_centerHorizontal="true"
101 android:text="callbackString" />
102
103 <Button
104 android:id="@+id/buttonGetDataString"
105 android:layout_width="match_parent"
106 android:layout_height="wrap_content"
107 android:layout_below="@+id/DataString_text"
108 android:onClick="onClick"
109 android:text="GetDataString" />
110
Emeric Vigier05e894e2012-08-20 13:53:02 -0400111</RelativeLayout>