forked from syncfusion/xamarin-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSfMaskedEditProperties.cs
318 lines (285 loc) · 13 KB
/
SfMaskedEditProperties.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
#region Copyright Syncfusion Inc. 2001-2019.
// Copyright Syncfusion Inc. 2001-2019. All rights reserved.
// Use of this code is subject to the terms of our license.
// A copy of the current license can be obtained at any time by e-mailing
// [email protected]. Any infringement will be prosecuted under
// applicable laws.
#endregion
using Android.Content;
using Android.Graphics;
using Android.Views;
using Android.Widget;
using Syncfusion.Android.MaskedEdit;
using System;
using System.Collections.Generic;
using System.Globalization;
namespace SampleBrowser
{
class SfMaskedEditProperties
{
InputValidationMode validateMask;
SfMaskedEditText_Mobile textMask;
SfMaskedEditText_Tab tabMask;
int validatePosition = 0;
int culturePosition = 0;
int promptPosition = 0;
bool ishidePrompt = false;
public SfMaskedEditProperties(SfMaskedEditText_Mobile maskedEdit)
{
textMask = maskedEdit;
}
public SfMaskedEditProperties(SfMaskedEditText_Tab maskedEdit)
{
tabMask = maskedEdit;
}
internal InputValidationMode ValidationLayout(Context context, LinearLayout propertylayout, bool isMobile)
{
TextView validationLabel = new TextView(context);
validationLabel.TextSize = 20;
validationLabel.Text = "Validation On";
//CutCopy Spinner
Spinner validationSpinner = new Spinner(context, SpinnerMode.Dialog);
validationSpinner.SetGravity(GravityFlags.Left);
//CutCopy List
List<String> validationList = new List<String>();
validationList.Add("Key Press");
validationList.Add("Lost Focus");
ArrayAdapter<String> validationAdopter = new ArrayAdapter<String>(context, Android.Resource.Layout.SimpleSpinnerItem, validationList);
validationAdopter.SetDropDownViewResource(Android.Resource.Layout.SimpleSpinnerDropDownItem);
validationSpinner.Adapter = validationAdopter;
validationSpinner.SetSelection(validatePosition);
//cutcopy Spinner ItemSelected Listener
validationSpinner.ItemSelected += (object sender, AdapterView.ItemSelectedEventArgs e) =>
{
String selectedItem = validationAdopter.GetItem(e.Position);
validatePosition = e.Position;
if (selectedItem.Equals("Key Press"))
{
validateMask = InputValidationMode.KeyPress;
}
if (selectedItem.Equals("Lost Focus"))
{
validateMask = InputValidationMode.LostFocus;
}
if (isMobile)
{
textMask.ValidationMask = validateMask;
}
else
{
tabMask.ValidationMask = validateMask;
tabMask.OnApplyChanges();
}
};
if (isMobile)
{
propertylayout.AddView(validationLabel);
//AdjLabel
TextView adjLabel2 = new TextView(context);
adjLabel2.SetHeight(14);
adjLabel2.SetPadding(0, 0, 0, 20);
propertylayout.AddView(adjLabel2);
validationSpinner.SetPadding(0, 0, 0, 20);
propertylayout.AddView(validationSpinner);
}
else
{
LinearLayout validationLayout = new LinearLayout(context);
validationLayout.Orientation = Android.Widget.Orientation.Horizontal;
validationLayout.AddView(validationLabel);
LinearLayout.LayoutParams validationSpinnerLayout = new LinearLayout.LayoutParams(
ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.WrapContent);
validationSpinnerLayout.SetMargins(160, 0, 70, 0);
validationLayout.AddView(validationSpinner,validationSpinnerLayout);
tabMask.ProprtyOptionsLayout.AddView(validationLayout);
TextView spaceText2 = new TextView(context);
spaceText2.LayoutParameters = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MatchParent, 38, GravityFlags.Center);
tabMask.ProprtyOptionsLayout.AddView(spaceText2);
}
return validateMask;
}
internal void CultureLayout(Context context, LinearLayout propertylayout, bool isMobile)
{
TextView cultureLabel = new TextView(context);
cultureLabel.TextSize = 20;
cultureLabel.Text = "Culture";
//culture Spinner
Spinner cultureSpinner = new Spinner(context, SpinnerMode.Dialog);
cultureSpinner.SetGravity(GravityFlags.Left);
//culture List
List<String> cultureList = new List<String>();
cultureList.Add("United States");
cultureList.Add("United Kingdom");
cultureList.Add("Japan");
cultureList.Add("France");
cultureList.Add("Italy");
//culture Adapter
ArrayAdapter<string> cultureAdopter = new ArrayAdapter<String>(context, Android.Resource.Layout.SimpleSpinnerItem, cultureList);
cultureAdopter.SetDropDownViewResource(Android.Resource.Layout.SimpleSpinnerDropDownItem);
cultureSpinner.Adapter = cultureAdopter;
cultureSpinner.SetSelection(culturePosition);
CultureInfo currentCulture = new CultureInfo("en-us");
//culture Spinner ItemSelected Listener
cultureSpinner.ItemSelected += (object sender, AdapterView.ItemSelectedEventArgs e) =>
{
String selectedItem = cultureAdopter.GetItem(e.Position);
culturePosition = e.Position;
if (selectedItem.Equals("United States"))
{
currentCulture = new CultureInfo("en-us");
}
else if (selectedItem.Equals("United Kingdom"))
{
currentCulture = new CultureInfo("en-GB");
}
else if (selectedItem.Equals("Japan"))
{
currentCulture = new CultureInfo("ja-JP");
}
else if (selectedItem.Equals("France"))
{
currentCulture = new CultureInfo("fr-FR");
}
else if (selectedItem.Equals("Italy"))
{
currentCulture = new CultureInfo("it-IT");
}
if (isMobile)
{
textMask.CurrentCulture = currentCulture;
}
else
{
tabMask.CurrentCulture = currentCulture;
tabMask.OnApplyChanges();
}
};
if (isMobile)
{
TextView spaceText = new TextView(context);
propertylayout.AddView(spaceText);
propertylayout.AddView(cultureLabel);
//AdjLabel
TextView adjLabel2 = new TextView(context);
adjLabel2.SetHeight(14);
adjLabel2.SetPadding(0, 0, 0, 20);
propertylayout.AddView(adjLabel2);
cultureSpinner.SetPadding(0, 0, 0, 0);
propertylayout.AddView(cultureSpinner);
}
else
{
tabMask.OnApplyChanges();
LinearLayout cultureLayout = new LinearLayout(context);
cultureLayout.Orientation = Android.Widget.Orientation.Horizontal;
cultureLayout.AddView(cultureLabel);
LinearLayout.LayoutParams cultureSpinnerLayout = new LinearLayout.LayoutParams(
ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.WrapContent);
cultureSpinnerLayout.SetMargins(220, 0, 65, 0);
cultureLayout.AddView(cultureSpinner,cultureSpinnerLayout);
tabMask.ProprtyOptionsLayout.AddView(cultureLayout);
TextView spaceText3 = new TextView(context);
spaceText3.LayoutParameters = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MatchParent, 38, GravityFlags.Center);
tabMask.ProprtyOptionsLayout.AddView(spaceText3);
}
}
internal void HideLayout(Context context, LinearLayout propertylayout, bool isMobile)
{
TextView hidePromtText = new TextView(context);
hidePromtText.Text = "Hide Prompt On Leave";
hidePromtText.Gravity = GravityFlags.Center;
hidePromtText.TextSize = 20;
Switch hidePromptSwitch = new Switch(context);
hidePromptSwitch.Checked = ishidePrompt;
hidePromptSwitch.CheckedChange += (object send, CompoundButton.CheckedChangeEventArgs eve) =>
{
ishidePrompt = eve.IsChecked;
if (isMobile)
{
textMask.HidePrompt = eve.IsChecked;
}
else
{
tabMask.HidePrompt = eve.IsChecked;
tabMask.OnApplyChanges();
}
};
LinearLayout.LayoutParams hidePromptSwitchParams = new LinearLayout.LayoutParams(
ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.WrapContent);
if(SfMaskedEditText.IsTabletDevice(context))
hidePromptSwitchParams.SetMargins(0, 0,110, 0);
else
hidePromptSwitchParams.SetMargins(0, 10, 0, 0);
LinearLayout hidePromptLayout = new LinearLayout(context);
hidePromptLayout.AddView(hidePromtText);
hidePromptLayout.AddView(hidePromptSwitch, hidePromptSwitchParams);
hidePromptLayout.Orientation = Orientation.Horizontal;
if (isMobile)
{
TextView textSpacing = new TextView(context);
propertylayout.AddView(textSpacing);
propertylayout.AddView(hidePromptLayout);
TextView textSpacing1 = new TextView(context);
propertylayout.AddView(textSpacing1);
propertylayout.SetPadding(5, 0, 5, 0);
}
else
{
tabMask.OnApplyChanges();
tabMask.ProprtyOptionsLayout.AddView(hidePromptLayout);
TextView spaceText4 = new TextView(context);
spaceText4.LayoutParameters = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MatchParent, 38, GravityFlags.Center);
tabMask.ProprtyOptionsLayout.AddView(spaceText4);
}
}
internal void PromptLayout(Context context, LinearLayout propertylayout, bool isMobile)
{
TextView promptLabel = new TextView(context);
promptLabel.TextSize = 20;
promptLabel.Text = "Prompt Character";
//prompt Spinner
Spinner promptSpinner = new Spinner(context, SpinnerMode.Dialog);
promptSpinner.SetGravity(GravityFlags.Left);
//prompt List
List<char> promptList = new List<char>();
promptList.Add('_');
promptList.Add('*');
promptList.Add('~');
//prompt Adapter
ArrayAdapter<char> promptAdopter = new ArrayAdapter<char>(context, Android.Resource.Layout.SimpleSpinnerItem, promptList);
promptAdopter.SetDropDownViewResource(Android.Resource.Layout.SimpleSpinnerDropDownItem);
promptSpinner.Adapter = promptAdopter;
promptSpinner.SetSelection(promptPosition);
//prompt Spinner ItemSelected Listener
promptSpinner.ItemSelected += (object sender, AdapterView.ItemSelectedEventArgs e) =>
{
promptPosition = e.Position;
char prompt = promptAdopter.GetItem(e.Position);
if (isMobile)
textMask.CurrentPrompt = prompt;
else
{
tabMask.CurrentPrompt = prompt;
tabMask.OnApplyChanges();
}
};
LinearLayout.LayoutParams promptspinnerLayout = new LinearLayout.LayoutParams(
ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.WrapContent);
if (SfMaskedEditText.IsTabletDevice(context))
promptspinnerLayout.SetMargins(120, 0,90, 0);
else
promptspinnerLayout.SetMargins(200, 0, 0, 0);
LinearLayout promptLayout = new LinearLayout(context);
promptLayout.AddView(promptLabel);
promptLayout.AddView(promptSpinner, promptspinnerLayout);
promptLayout.Orientation = Orientation.Horizontal;
if (isMobile)
propertylayout.AddView(promptLayout);
else
{
tabMask.OnApplyChanges();
tabMask.ProprtyOptionsLayout.AddView(promptLayout);
}
}
}
}