forked from syncfusion/xamarin-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSfMaskedEditText_Mobile.cs
413 lines (356 loc) · 15.2 KB
/
SfMaskedEditText_Mobile.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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
#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.App;
using Android.Content;
using Android.Graphics;
using Android.Views;
using Android.Widget;
using Syncfusion.Android.MaskedEdit;
using System;
using System.Globalization;
namespace SampleBrowser
{
public class SfMaskedEditText_Mobile
{
#region Fields
SfMaskedEdit sfToAccount, sfDesc, amountMask, emailMask, phoneMask;
TextView erroToAccount, errotextAmount, errotextEmail, errotextPhone;
Context context;
LinearLayout propertylayout;
InputValidationMode validationMask;
CultureInfo currentCulute;
bool hidePrompt;
char currentPrompt;
AlertDialog.Builder resultsDialog;
SfMaskedEditProperties maskProperties;
#endregion
public SfMaskedEditText_Mobile()
{
maskProperties = new SfMaskedEditProperties(this);
}
#region Properties
internal InputValidationMode ValidationMask
{
get
{
return validationMask;
}
set
{
validationMask = value;
}
}
internal char CurrentPrompt
{
get
{
return currentPrompt;
}
set
{
currentPrompt = value;
}
}
internal CultureInfo CurrentCulture
{
get
{
return currentCulute;
}
set
{
currentCulute = value;
}
}
internal bool HidePrompt
{
get
{
return hidePrompt;
}
set
{
hidePrompt = value;
}
}
#endregion
public View GetSampleContent(Context con)
{
ScrollView scroll = new ScrollView(con);
bool isTablet = SfMaskedEditText.IsTabletDevice(con);
LinearLayout linear = new LinearLayout(con);
linear.SetBackgroundColor(Color.White);
linear.Orientation = Orientation.Vertical;
linear.SetPadding(12, 12, 12, 12);
TextView headLabel = new TextView(con);
headLabel.TextSize = 30;
headLabel.SetTextColor(Color.ParseColor("#262626"));
headLabel.Typeface = Typeface.DefaultBold;
headLabel.Text = "Funds Transfer";
linear.AddView(headLabel);
TextView fundTransferLabelSpacing = new TextView(con);
fundTransferLabelSpacing.SetHeight(40);
linear.AddView(fundTransferLabelSpacing);
TextView textToAccount = new TextView(con);
textToAccount.SetTextColor(Color.ParseColor("#6d6d72"));
textToAccount.TextSize = 16;
textToAccount.Typeface = Typeface.Default;
textToAccount.Text = "To Account";
textToAccount.SetPadding(0, 0, 0, 10);
linear.AddView(textToAccount);
sfToAccount = new SfMaskedEdit(con);
sfToAccount.Mask = "0000 0000 0000 0000";
sfToAccount.Gravity = GravityFlags.Start;
sfToAccount.ValidationMode = InputValidationMode.KeyPress;
sfToAccount.ValueMaskFormat = MaskFormat.ExcludePromptAndLiterals;
sfToAccount.Hint = "1234 1234 1234 1234";
sfToAccount.SetHintTextColor(Color.LightGray);
linear.AddView(sfToAccount);
erroToAccount = new TextView(con);
erroToAccount.SetTextColor(Color.Red);
erroToAccount.TextSize = 12;
erroToAccount.Typeface = Typeface.Default;
linear.AddView(erroToAccount);
TextView textDesc = new TextView(con);
textDesc.Text = "Description";
textDesc.Typeface = Typeface.Default;
textDesc.SetPadding(0, 30, 0, 10);
textDesc.TextSize = 16;
linear.AddView(textDesc);
sfDesc = new SfMaskedEdit(con);
sfDesc.Mask = "";
sfDesc.Gravity = GravityFlags.Start;
sfDesc.ValidationMode = InputValidationMode.KeyPress;
sfDesc.ValueMaskFormat = MaskFormat.ExcludePromptAndLiterals;
sfDesc.Hint = "Enter description";
sfDesc.SetHintTextColor(Color.LightGray);
linear.AddView(sfDesc);
TextView textAmount = new TextView(con);
textAmount.Text = "Amount";
textAmount.Typeface = Typeface.Default;
textAmount.SetPadding(0, 30, 0, 10);
textAmount.TextSize = 16;
linear.AddView(textAmount);
amountMask = new SfMaskedEdit(con);
amountMask.Mask = "$ 0,000.00";
amountMask.Gravity = GravityFlags.Start;
amountMask.ValidationMode = InputValidationMode.KeyPress;
amountMask.ValueMaskFormat = MaskFormat.IncludePromptAndLiterals;
amountMask.Hint = "$ 3,874.00";
amountMask.SetHintTextColor(Color.LightGray);
linear.AddView(amountMask);
errotextAmount = new TextView(con);
errotextAmount.SetTextColor(Color.Red);
errotextAmount.TextSize = 12;
errotextAmount.Typeface = Typeface.Default;
linear.AddView(errotextAmount);
TextView textEmail = new TextView(con);
textEmail.Text = "Email ID";
textEmail.Typeface = Typeface.Default;
textEmail.SetPadding(0, 30, 0, 10);
textEmail.TextSize = 16;
linear.AddView(textEmail);
emailMask = new SfMaskedEdit(con);
emailMask.Mask = @"\w+@\w+\.\w+";
emailMask.MaskType = MaskType.RegEx;
emailMask.Gravity = GravityFlags.Start;
emailMask.ValidationMode = InputValidationMode.KeyPress;
emailMask.ValueMaskFormat = MaskFormat.ExcludePromptAndLiterals;
emailMask.Hint = "[email protected]";
emailMask.SetHintTextColor(Color.LightGray);
linear.AddView(emailMask);
errotextEmail = new TextView(con);
errotextEmail.SetTextColor(Color.Red);
errotextEmail.TextSize = 12;
errotextEmail.Typeface = Typeface.Default;
linear.AddView(errotextEmail);
TextView textPhone = new TextView(con);
textPhone.Text = "Mobile Number ";
textPhone.Typeface = Typeface.Default;
textPhone.SetPadding(0, 30, 0, 10);
textPhone.TextSize = 16;
linear.AddView(textPhone);
phoneMask = new SfMaskedEdit(con);
phoneMask.Mask = "+1 000 000 0000";
phoneMask.Gravity = GravityFlags.Start;
phoneMask.ValueMaskFormat = MaskFormat.ExcludePromptAndLiterals;
phoneMask.ValidationMode = InputValidationMode.KeyPress;
phoneMask.Hint = "+1 323 339 3392";
phoneMask.SetHintTextColor(Color.LightGray);
linear.AddView(phoneMask);
errotextPhone = new TextView(con);
errotextPhone.SetTextColor(Color.Red);
errotextPhone.TextSize = 12;
errotextPhone.Typeface = Typeface.Default;
linear.AddView(errotextPhone);
TextView searchButtonSpacing = new TextView(con);
searchButtonSpacing.SetHeight(30);
Button searchButton = new Button(con);
searchButton.SetWidth(ActionBar.LayoutParams.MatchParent);
searchButton.SetHeight(40);
searchButton.Text = "TRANSFER MONEY";
searchButton.SetTextColor(Color.White);
searchButton.SetBackgroundColor(Color.Gray);
searchButton.Click += (object sender, EventArgs e) =>
{
if (string.IsNullOrEmpty(sfToAccount.Text) || string.IsNullOrEmpty(sfDesc.Text) || string.IsNullOrEmpty(amountMask.Text) || string.IsNullOrEmpty(emailMask.Text) || string.IsNullOrEmpty(phoneMask.Text))
{
resultsDialog.SetMessage("Please fill all the required data!");
}
else if((sfToAccount.HasError || sfDesc.HasError || amountMask.HasError || emailMask.HasError || phoneMask.HasError))
{
resultsDialog.SetMessage("Please enter valid details");
}
else
{
resultsDialog.SetMessage(string.Format("Amount of {0} has been transferred successfully!", amountMask.Value));
string mask1 = sfToAccount.Mask;
sfToAccount.Mask = string.Empty;
sfToAccount.Mask = mask1;
mask1 = sfDesc.Mask;
sfDesc.Mask = "0";
sfDesc.Mask = mask1;
mask1 = amountMask.Mask;
amountMask.Mask = string.Empty;
amountMask.Mask = mask1;
mask1 = emailMask.Mask;
emailMask.Mask = string.Empty;
emailMask.Mask = mask1;
mask1 = phoneMask.Mask;
phoneMask.Mask = string.Empty;
phoneMask.Mask = mask1;
}
resultsDialog.Create().Show();
};
linear.AddView(searchButtonSpacing);
linear.AddView(searchButton);
sfToAccount.ValueChanged += SfToAccount_ValueChanged;
sfToAccount.MaskInputRejected += SfToAccount_MaskInputRejected;
amountMask.ValueChanged += AmountMask_ValueChanged;
amountMask.MaskInputRejected += AmountMask_MaskInputRejected;
emailMask.ValueChanged += EmailMask_ValueChanged;
emailMask.MaskInputRejected += EmailMask_MaskInputRejected;
phoneMask.ValueChanged += PhoneMask_ValueChanged;
phoneMask.MaskInputRejected += PhoneMask_MaskInputRejected;
//results dialog
resultsDialog = new AlertDialog.Builder(con);
resultsDialog.SetTitle("Status");
resultsDialog.SetPositiveButton("OK", (object sender, DialogClickEventArgs e) =>
{
});
resultsDialog.SetCancelable(true);
scroll.AddView(linear);
return scroll;
}
private void PhoneMask_MaskInputRejected(object sender, MaskInputRejectedEventArgs e)
{
errotextPhone.Text = GetRejectionHintText(e.RejectionHint);
}
private void PhoneMask_ValueChanged(object sender, ValueChangedEventArgs e)
{
errotextPhone.Text = "";
}
private void EmailMask_MaskInputRejected(object sender, MaskInputRejectedEventArgs e)
{
errotextEmail.Text = GetRejectionHintText(e.RejectionHint);
}
private void EmailMask_ValueChanged(object sender, ValueChangedEventArgs e)
{
errotextEmail.Text = "";
}
private void AmountMask_MaskInputRejected(object sender, MaskInputRejectedEventArgs e)
{
errotextAmount.Text = GetRejectionHintText(e.RejectionHint);
}
private void AmountMask_ValueChanged(object sender, ValueChangedEventArgs e)
{
errotextAmount.Text = "";
}
private void SfToAccount_MaskInputRejected(object sender, MaskInputRejectedEventArgs e)
{
erroToAccount.Text = GetRejectionHintText(e.RejectionHint);
}
private void SfToAccount_ValueChanged(object sender, ValueChangedEventArgs e)
{
erroToAccount.Text = "";
}
private string GetRejectionHintText(MaskedTextResultHint hint)
{
string hintText = string.Empty;
switch (hint)
{
case MaskedTextResultHint.AlphanumericCharacterExpected:
hintText = "Invalid character!";
break;
case MaskedTextResultHint.DigitExpected:
hintText = "Invalid character!";
break;
case MaskedTextResultHint.LetterExpected:
hintText = "Invalid character!";
break;
case MaskedTextResultHint.SignedDigitExpected:
hintText = "Invalid character!";
break;
//case MaskedTextResultHint.UnavailableEditPosition:
// hintText = "Invalid typed character!";
// break;
}
return hintText;
}
public View GetPropertyWindowLayout(Context context1)
{
bool isTablet = SfMaskedEditText.IsTabletDevice(context1);
LinearLayout gridLinearLayout = null;
context = context1;
if (isTablet)
{
gridLinearLayout = new LinearLayout(context) { Orientation = Android.Widget.Orientation.Vertical };
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MatchParent, LinearLayout.LayoutParams.WrapContent);
layoutParams.TopMargin = 25;
gridLinearLayout.LayoutParameters = layoutParams;
gridLinearLayout.SetBackgroundResource(Resource.Drawable.LinearLayout_Border);
}
propertylayout = new LinearLayout(context);
propertylayout.Orientation = Android.Widget.Orientation.Vertical;
maskProperties.ValidationLayout(context, propertylayout, true);
maskProperties.CultureLayout(context, propertylayout, true);
maskProperties.HideLayout(context, propertylayout, true);
maskProperties.PromptLayout(context, propertylayout, true);
if (isTablet)
{
gridLinearLayout.AddView(propertylayout);
return gridLinearLayout;
}
else
return propertylayout;
}
public void OnApplyChanges()
{
sfToAccount.HidePromptOnLeave = hidePrompt;
sfToAccount.ValidationMode = validationMask;
sfToAccount.PromptChar = currentPrompt;
sfToAccount.Culture = currentCulute;
sfDesc.HidePromptOnLeave = hidePrompt;
sfDesc.ValidationMode = validationMask;
sfDesc.PromptChar = currentPrompt;
sfDesc.Culture = currentCulute;
amountMask.HidePromptOnLeave = hidePrompt;
amountMask.ValidationMode = validationMask;
amountMask.Culture = currentCulute;
amountMask.PromptChar = currentPrompt;
emailMask.HidePromptOnLeave = hidePrompt;
emailMask.ValidationMode = validationMask;
emailMask.PromptChar = currentPrompt;
emailMask.Culture = currentCulute;
phoneMask.HidePromptOnLeave = hidePrompt;
phoneMask.ValidationMode = validationMask;
phoneMask.PromptChar = currentPrompt;
phoneMask.Culture = currentCulute;
}
}
}