annotate app/src/main/res/xml/host_prefs.xml @ 438:d29cce60f393

migrate from Eclipse to Android Studio
author Carl Byington <carl@five-ten-sg.com>
date Thu, 03 Dec 2015 11:23:55 -0800
parents res/xml/host_prefs.xml@dc6e53600ae2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
1 <?xml version="1.0" encoding="utf-8"?>
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
2 <!--
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
3 /*
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
4 * ConnectBot: simple, powerful, open-source SSH client for Android
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
5 * Copyright 2007 Kenny Root, Jeffrey Sharkey
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
6 *
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
7 * Licensed under the Apache License, Version 2.0 (the "License");
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
8 * you may not use this file except in compliance with the License.
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
9 * You may obtain a copy of the License at
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
10 *
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
11 * http://www.apache.org/licenses/LICENSE-2.0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
12 *
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
13 * Unless required by applicable law or agreed to in writing, software
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
14 * distributed under the License is distributed on an "AS IS" BASIS,
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
16 * See the License for the specific language governing permissions and
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
17 * limitations under the License.
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
18 */
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
19 -->
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
20
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
21 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
22
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
23 <EditTextPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
24 android:key="nickname"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
25 android:title="@string/hostpref_nickname_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
26 android:singleLine="true"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
27 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
28
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
29 <ListPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
30 android:key="color"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
31 android:title="@string/hostpref_color_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
32 android:entries="@array/list_colors"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
33 android:entryValues="@array/list_color_values"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
34 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
35
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
36 <EditTextPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
37 android:key="fontsize"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
38 android:title="@string/hostpref_fontsize_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
39 android:inputType="number"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
40 android:singleLine="true"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
41 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
42
249
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
43 <CheckBoxPreference
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
44 android:key="fixed_size"
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
45 android:title="@string/hostpref_fixed_size_title"
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
46 android:summary="@string/hostpref_fixed_size_summary"
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
47 />
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
48
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
49 <EditTextPreference
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
50 android:key="fixed_width"
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
51 android:title="@string/hostpref_fixed_width_title"
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
52 android:defaultValue="80"
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
53 android:numeric="integer"
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
54 />
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
55
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
56 <EditTextPreference
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
57 android:key="fixed_height"
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
58 android:title="@string/hostpref_fixed_height_title"
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
59 android:defaultValue="25"
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
60 android:numeric="integer"
dc6e53600ae2 add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
61 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
62
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
63 <ListPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
64 android:key="pubkeyid"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
65 android:title="@string/hostpref_pubkeyid_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
66 android:entries="@array/list_pubkeyids"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
67 android:entryValues="@array/list_pubkeyids_value"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
68 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
69
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
70 <ListPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
71 android:key="useauthagent"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
72 android:title="@string/hostpref_authagent_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
73 android:entries="@array/list_authagent"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
74 android:entryValues="@array/list_authagent_values"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
75 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
76
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
77 <EditTextPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
78 android:key="postlogin"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
79 android:title="@string/hostpref_postlogin_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
80 android:summary="@string/hostpref_postlogin_summary"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
81 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
82
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
83 <CheckBoxPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
84 android:key="compression"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
85 android:title="@string/hostpref_compression_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
86 android:summary="@string/hostpref_compression_summary"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
87 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
88
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
89 <EditTextPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
90 android:key="httpproxy"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
91 android:title="@string/hostpref_httpproxy_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
92 android:summary="@string/hostpref_httpproxy_summary"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
93 android:inputType="textUri"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
94 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
95
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
96 <CheckBoxPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
97 android:key="wantsession"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
98 android:title="@string/hostpref_wantsession_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
99 android:summary="@string/hostpref_wantsession_summary"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
100 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
101
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
102 <CheckBoxPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
103 android:key="stayconnected"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
104 android:title="@string/hostpref_stayconnected_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
105 android:summary="@string/hostpref_stayconnected_summary"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
106 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
107
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
108 <ListPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
109 android:key="delkey"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
110 android:title="@string/hostpref_delkey_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
111 android:summary="@string/hostpref_delkey_summary"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
112 android:entries="@array/list_delkey"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
113 android:entryValues="@array/list_delkey_values"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
114 />
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
115
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
116 <ListPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
117 android:key="encoding"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
118 android:title="@string/hostpref_encoding_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
119 android:summary="@string/hostpref_encoding_summary"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
120 />
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
121
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
122 <PreferenceCategory
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
123 android:title="@string/hostpref_connection_category">
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
124
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
125 <EditTextPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
126 android:key="username"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
127 android:title="@string/hostpref_username_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
128 android:singleLine="true"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
129 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
130
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
131 <EditTextPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
132 android:key="hostname"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
133 android:title="@string/hostpref_hostname_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
134 android:singleLine="true"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
135 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
136
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
137 <EditTextPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
138 android:key="port"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
139 android:title="@string/hostpref_port_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
140 android:numeric="integer"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
141 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
142
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
143 <EditTextPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
144 android:key="monitor"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
145 android:title="@string/hostpref_monitor_title"
90
3f587bd647a5 convert ctrl keys to virtual keys; use proper android home directory
Carl Byington <carl@five-ten-sg.com>
parents: 64
diff changeset
146 android:summary="@string/hostpref_monitor_summary"
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
147 android:singleLine="true"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
148 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
149
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
150 <EditTextPreference
64
c8f45608d94c add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 62
diff changeset
151 android:key="emulation"
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
152 android:title="@string/hostpref_emulation_title"
62
aac8e0496ef9 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 61
diff changeset
153 android:summary="@string/hostpref_emulation_summary"
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
154 android:singleLine="true"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
155 />
123
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
156 </PreferenceCategory>
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
157
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
158
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
159 <PreferenceCategory
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
160 android:key="5250"
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
161 android:title="@string/hostpref_5250_settings">
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
162
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
163 <ListPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
164 android:key="encryption5250"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
165 android:title="@string/hostpref_5250_encryption_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
166 android:entries="@array/list_5250_encryption_modes"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
167 android:entryValues="@array/list_5250_encryption_modes"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
168 />
123
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
169
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
170 <EditTextPreference
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
171 android:key="library5250"
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
172 android:title="@string/hostpref_5250_library_title"
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
173 android:singleLine="true"
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
174 />
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
175
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
176 <EditTextPreference
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
177 android:key="menu5250"
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
178 android:title="@string/hostpref_5250_menu_title"
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
179 android:singleLine="true"
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
180 />
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
181
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
182 <EditTextPreference
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
183 android:key="program5250"
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
184 android:title="@string/hostpref_5250_program_title"
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
185 android:singleLine="true"
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
186 />
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
187 </PreferenceCategory>
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
188
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
189
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
190 <PreferenceCategory
123
446dbcf606eb add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
191 android:key="x11"
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
192 android:title="@string/hostpref_x11_forwarding">
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
193
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
194 <CheckBoxPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
195 android:key="wantx11forward"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
196 android:title="@string/hostpref_wantx11forward_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
197 android:summary="@string/hostpref_wantx11forward_summary"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
198 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
199
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
200 <EditTextPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
201 android:key="x11host"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
202 android:title="@string/hostpref_x11host_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
203 android:singleLine="true"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
204 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
205
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
206 <EditTextPreference
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
207 android:key="x11port"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
208 android:title="@string/hostpref_x11port_title"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
209 android:numeric="integer"
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
210 />
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
211
61
ce8f13242339 add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
212 </PreferenceCategory>
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
213
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
214 </PreferenceScreen>