blob: f8b6890b3239217e000c888820aeb0714d4efc6b [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"
Emeric Vigier39a11fa2012-08-29 15:25:09 -040053 android:layout_alignBottom="@+id/editAccountID"
54 android:gravity="center_vertical"
Emeric Vigierd5c17f52012-08-29 09:29:33 -040055 android:layout_below="@+id/buttonInit"
56 android:text="AccountID"
57 android:ems="10" />
58
Emeric Vigier39a11fa2012-08-29 15:25:09 -040059 <TextView
Emeric Vigierd5c17f52012-08-29 09:29:33 -040060 android:id="@+id/editAccountID"
61 android:layout_width="wrap_content"
62 android:layout_height="wrap_content"
63 android:layout_alignParentRight="true"
64 android:layout_toRightOf="@+id/textAccountID"
65 android:layout_below="@+id/buttonInit"
Emeric Vigier39a11fa2012-08-29 15:25:09 -040066 android:text="IP2IP"
Emeric Vigierd5c17f52012-08-29 09:29:33 -040067 android:ems="10" />
Emeric Vigier39a11fa2012-08-29 15:25:09 -040068
Emeric Vigierd5c17f52012-08-29 09:29:33 -040069 <TextView
70 android:id="@+id/textTo"
71 android:layout_width="wrap_content"
72 android:layout_height="wrap_content"
73 android:layout_alignParentLeft="true"
Emeric Vigier39a11fa2012-08-29 15:25:09 -040074 android:layout_alignBottom="@+id/editTo"
75 android:gravity="center_vertical"
76 android:layout_below="@+id/editAccountID"
77 android:text="to IP address"
Emeric Vigierd5c17f52012-08-29 09:29:33 -040078 android:ems="10" />
79
80 <EditText
81 android:id="@+id/editTo"
82 android:layout_width="wrap_content"
83 android:layout_height="wrap_content"
84 android:layout_alignParentRight="true"
85 android:layout_toRightOf="@+id/textTo"
Emeric Vigier39a11fa2012-08-29 15:25:09 -040086 android:layout_below="@+id/editAccountID"
Emeric Vigierd5c17f52012-08-29 09:29:33 -040087 android:ems="10" />
Emeric Vigiereaf2c492012-09-19 14:38:20 -040088
89 <Button
90 android:id="@+id/buttonService"
91 android:layout_width="match_parent"
92 android:layout_height="wrap_content"
93 android:layout_below="@+id/editTo"
94 android:onClick="onClick"
95 android:text="enable Service" />
Emeric Vigier62ca14d2012-08-24 11:05:09 -040096
Alexandre Savard2c50e692012-09-24 11:18:31 -040097 <!--
98 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
99 xmlns:tools="http://schemas.android.com/tools"
100 android:id="@+id/dialpad"
101 android:layout_width="wrap_content"
102 android:layout_height="wrap_content"
103 android:orientation="vertical"
104 android:paddingLeft="8dp"
105 android:paddingRight="8dp"
106 android:layout_below="@+id/buttonGetDataString">
107 <include layout="@layout/dialpad"/>
108 </LinearLayout>
109 -->
alisionf76de3b2013-04-16 15:35:22 -0400110 <com.savoirfairelinux.sflphone.model.Numpad
Alexandre Savard2c50e692012-09-24 11:18:31 -0400111 android:id="@+id/numPad"
112 android:layout_width="wrap_content"
113 android:layout_height="wrap_content"
Emeric Vigierb55bafc2012-09-24 13:25:50 -0400114 android:layout_below="@+id/buttonService"/>
Alexandre Savardcb66fa42012-10-26 10:06:16 -0400115<!--
Alexandre Savard2c50e692012-09-24 11:18:31 -0400116 <EditText
117 android:id="@+id/numDisplay"
118 android:layout_width="fill_parent"
119 android:layout_height="wrap_content"
120 android:hint="type phone number"
121 android:layout_below="@+id/buttonCall"/>
Alexandre Savardcb66fa42012-10-26 10:06:16 -0400122-->
Alexandre Savard2c50e692012-09-24 11:18:31 -0400123
Alexandre Savard2b370f02012-09-06 16:06:01 -0400124</RelativeLayout>