forked from syncfusion/xamarin-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Localization.cs
460 lines (421 loc) · 15.2 KB
/
Localization.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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
#region Copyright Syncfusion Inc. 2001-2022.
// Copyright Syncfusion Inc. 2001-2022. 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 System;
using Com.Syncfusion.Schedule;
using Com.Syncfusion.Schedule.Enums;
using Android.Views;
using Android.Content;
using Android.Widget;
using System.Collections.Generic;
using Android.Graphics;
using Java.Util;
namespace SampleBrowser
{
public class Localization : SamplePage, IDisposable
{
public Localization()
{
}
private SfSchedule sfSchedule;
private Spinner spinner;
private LinearLayout propertylayout;
public override View GetSampleContent(Context context)
{
LinearLayout linearLayout = new LinearLayout(context);
linearLayout.Orientation = Orientation.Vertical;
propertylayout = new LinearLayout(context);
propertylayout = SetOptionPage(context);
//creating instance for Schedule
sfSchedule = new SfSchedule(context);
sfSchedule.ScheduleView = ScheduleView.WeekView;
sfSchedule.Locale = new Locale("fr");
SetFrenchCollectionSubjects();
SetChineseCollectionSubjects();
SetEnglishCollectionSubjects();
SetSpanishCollectionSubjects();
SetColors();
RandomNumbers();
SetStartTime();
SetEndTime();
sfSchedule.LayoutParameters = new FrameLayout.LayoutParams(
LinearLayout.LayoutParams.MatchParent,
LinearLayout.LayoutParams.MatchParent);
sfSchedule.ItemsSource = GetFrenchAppointments();
linearLayout.AddView(sfSchedule);
return linearLayout;
}
private LinearLayout SetOptionPage(Context context)
{
TextView scheduleType_txtBlock = new TextView(context);
scheduleType_txtBlock.Text = "Select the Locale";
scheduleType_txtBlock.TextSize = 20;
scheduleType_txtBlock.SetPadding(0, 0, 0, 10);
scheduleType_txtBlock.SetTextColor(Color.Black);
LinearLayout layout = new LinearLayout(context);
layout.SetPadding(15, 15, 15, 20);
layout.Orientation = Android.Widget.Orientation.Vertical;
layout.SetBackgroundColor(Color.White);
spinner = new Spinner(context, SpinnerMode.Dialog);
spinner.SetMinimumHeight(60);
spinner.SetBackgroundColor(Color.Gray);
spinner.DropDownWidth = 500;
layout.AddView(scheduleType_txtBlock);
layout.AddView(spinner);
List<string> list = new List<string>();
list.Add("French");
list.Add("Spanish");
list.Add("English");
list.Add("Chinese");
ArrayAdapter<string> dataAdapter = new ArrayAdapter<string>(context, Android.Resource.Layout.SimpleSpinnerItem, list);
dataAdapter.SetDropDownViewResource(Android.Resource.Layout.SimpleSpinnerDropDownItem);
spinner.Adapter = dataAdapter;
spinner.ItemSelected += Spinner_ItemSelected;
return layout;
}
private List<string> colorCollection;
private List<Calendar> startTimeCollection;
private List<Calendar> endTimeCollection;
//Creating appointments for ScheduleAppointmentCollection
private ScheduleAppointmentCollection GetFrenchAppointments()
{
ScheduleAppointmentCollection appointmentCollection = new ScheduleAppointmentCollection();
for (int i = 0; i < 10; i++)
{
ScheduleAppointment scheduleAppointment = new ScheduleAppointment();
scheduleAppointment.Color = Color.ParseColor(colorCollection[i]);
scheduleAppointment.Subject = frenchCollection[i];
scheduleAppointment.StartTime = startTimeCollection[i];
scheduleAppointment.EndTime = endTimeCollection[i];
appointmentCollection.Add(scheduleAppointment);
}
return appointmentCollection;
}
//Creating appointments for ScheduleAppointmentCollection
private ScheduleAppointmentCollection GetSpanishAppointments()
{
ScheduleAppointmentCollection appointmentCollection = new ScheduleAppointmentCollection();
for (int i = 0; i < 10; i++)
{
ScheduleAppointment scheduleAppointment = new ScheduleAppointment();
scheduleAppointment.Color = Color.ParseColor(colorCollection[i]);
scheduleAppointment.Subject = spanishCollection[i];
scheduleAppointment.StartTime = startTimeCollection[i];
scheduleAppointment.EndTime = endTimeCollection[i];
appointmentCollection.Add(scheduleAppointment);
}
return appointmentCollection;
}
//Creating appointments for ScheduleAppointmentCollection
private ScheduleAppointmentCollection GetEnglishAppointments()
{
ScheduleAppointmentCollection appointmentCollection = new ScheduleAppointmentCollection();
for (int i = 0; i < 10; i++)
{
ScheduleAppointment scheduleAppointment = new ScheduleAppointment();
scheduleAppointment.Color = Color.ParseColor(colorCollection[i]);
scheduleAppointment.Subject = englishCollection[i];
scheduleAppointment.StartTime = startTimeCollection[i];
scheduleAppointment.EndTime = endTimeCollection[i];
appointmentCollection.Add(scheduleAppointment);
}
return appointmentCollection;
}
//Creating appointments for ScheduleAppointmentCollection
private ScheduleAppointmentCollection GetChineseAppointments()
{
ScheduleAppointmentCollection appointmentCollection = new ScheduleAppointmentCollection();
for (int i = 0; i < 10; i++)
{
ScheduleAppointment scheduleAppointment = new ScheduleAppointment();
scheduleAppointment.Color = Color.ParseColor(colorCollection[i]);
scheduleAppointment.Subject = chineseCollection[i];
scheduleAppointment.StartTime = startTimeCollection[i];
scheduleAppointment.EndTime = endTimeCollection[i];
appointmentCollection.Add(scheduleAppointment);
}
return appointmentCollection;
}
private List<string> englishCollection;
private void SetEnglishCollectionSubjects()
{
englishCollection = new List<string>();
englishCollection.Add("GoToMeeting");
englishCollection.Add("Business Meeting");
englishCollection.Add("Conference");
englishCollection.Add("Project Status Discussion");
englishCollection.Add("Auditing");
englishCollection.Add("Client Meeting");
englishCollection.Add("Generate Report");
englishCollection.Add("Target Meeting");
englishCollection.Add("General Meeting");
englishCollection.Add("Pay House Rent");
englishCollection.Add("Car Service");
englishCollection.Add("Medical Check Up");
englishCollection.Add("Wedding Anniversary");
englishCollection.Add("Sam's Birthday");
englishCollection.Add("Jenny's Birthday");
englishCollection.Add("Master Checkup");
englishCollection.Add("Hospital");
englishCollection.Add("Phone Bill Payment");
englishCollection.Add("Project Plan");
englishCollection.Add("Auditing");
englishCollection.Add("Client Meeting");
englishCollection.Add("Generate Report");
englishCollection.Add("Target Meeting");
englishCollection.Add("General Meeting");
englishCollection.Add("Play Golf");
englishCollection.Add("Car Service");
englishCollection.Add("Medical Check Up");
englishCollection.Add("Mary's Birthday");
englishCollection.Add("John's Birthday");
englishCollection.Add("Micheal's Birthday");
}
private List<string> frenchCollection;
private void SetFrenchCollectionSubjects()
{
frenchCollection = new List<string>();
frenchCollection.Add("aller ‡ la rÈunion");
frenchCollection.Add("Un rendez-vous d'affaire");
frenchCollection.Add("ConfÈrence");
frenchCollection.Add("Discussion Projet de Statut");
frenchCollection.Add("audit");
frenchCollection.Add("RÈunion du client");
frenchCollection.Add("gÈnÈrer un rapport");
frenchCollection.Add("RÈunion cible");
frenchCollection.Add("AssemblÈe gÈnÈrale");
frenchCollection.Add("Pay Maison Louer");
frenchCollection.Add("Service automobile");
frenchCollection.Add("Visite mÈdicale");
frenchCollection.Add("Anniversaire de mariage");
frenchCollection.Add("Anniversaire de Sam");
frenchCollection.Add("Anniversaire de Jenny");
frenchCollection.Add("Checkup Master");
frenchCollection.Add("HÙpital");
frenchCollection.Add("TÈlÈphone paiement de factures");
frenchCollection.Add("Plan de projet");
frenchCollection.Add("audit");
frenchCollection.Add("RÈunion du client");
frenchCollection.Add("gÈnÈrer un rapport");
frenchCollection.Add("RÈunion cible");
frenchCollection.Add("AssemblÈe gÈnÈrale");
frenchCollection.Add("Jouer au golf");
frenchCollection.Add("Service automobile");
frenchCollection.Add("Visite mÈdicale");
frenchCollection.Add("Anniversaire de Marie");
frenchCollection.Add("Anniversaire de John");
frenchCollection.Add("Anniversaire de Micheal");
}
private List<string> spanishCollection;
private void SetSpanishCollectionSubjects()
{
spanishCollection = new List<string>();
spanishCollection.Add("Ir a la reuniÛn");
spanishCollection.Add("ReuniÛn de negocios");
spanishCollection.Add("Conferencia");
spanishCollection.Add("SituaciÛn del proyecto DiscusiÛn");
spanishCollection.Add("AuditorÌa");
spanishCollection.Add("ReuniÛn Cliente");
spanishCollection.Add("Generar informe");
spanishCollection.Add("ReuniÛn Target");
spanishCollection.Add("ReuniÛn general");
spanishCollection.Add("Pago Casa Alquilar");
spanishCollection.Add("Servicio de auto");
spanishCollection.Add("RevisiÛn mÈdica");
spanishCollection.Add("Aniversario de bodas");
spanishCollection.Add("CumpleaÒos de Sam");
spanishCollection.Add("El cumpleaÒos de Jenny");
spanishCollection.Add("Chequeo Maestro");
spanishCollection.Add("el Hospital");
spanishCollection.Add("TelÈfono pago de facturas");
spanishCollection.Add("Plan de proyecto");
spanishCollection.Add("AuditorÌa");
spanishCollection.Add("ReuniÛn Cliente");
spanishCollection.Add("Generar informe");
spanishCollection.Add("ReuniÛn Target");
spanishCollection.Add("ReuniÛn general");
spanishCollection.Add("Jugar golf");
spanishCollection.Add("Servicio de auto");
spanishCollection.Add("RevisiÛn mÈdica");
spanishCollection.Add("CumpleaÒos de MarÌa");
spanishCollection.Add("John CumpleaÒos");
spanishCollection.Add("El cumpleaÒos de Micheal");
}
private List<string> chineseCollection;
private void SetChineseCollectionSubjects()
{
chineseCollection = new List<string>();
chineseCollection.Add("进入会议");
chineseCollection.Add("商务会议");
chineseCollection.Add("会议");
chineseCollection.Add("项目状态讨论");
chineseCollection.Add("审计");
chineseCollection.Add("客户会议");
chineseCollection.Add("生成报告");
chineseCollection.Add("目标会议");
chineseCollection.Add("大会");
chineseCollection.Add("支付房租");
chineseCollection.Add("汽车服务");
chineseCollection.Add("体格检查");
chineseCollection.Add("结婚纪念日");
chineseCollection.Add("萨姆的生日");
chineseCollection.Add("珍妮的生日");
chineseCollection.Add("主诊");
chineseCollection.Add("医院");
chineseCollection.Add("电话缴费");
chineseCollection.Add("项目计划");
chineseCollection.Add("审计");
chineseCollection.Add("客户会议");
chineseCollection.Add("生成报告");
chineseCollection.Add("目标会议");
chineseCollection.Add("大会");
chineseCollection.Add("打高尔夫球");
chineseCollection.Add("汽车服务");
chineseCollection.Add("体格检查");
chineseCollection.Add("玛丽的生日");
chineseCollection.Add("约翰的生日");
chineseCollection.Add("迈克尔的生日");
}
// adding colors collection
private void SetColors()
{
colorCollection = new List<string>();
colorCollection.Add("#FFA2C139");
colorCollection.Add("#FFD80073");
colorCollection.Add("#FF1BA1E2");
colorCollection.Add("#FFE671B8");
colorCollection.Add("#FFF09609");
colorCollection.Add("#FFA2C139");
colorCollection.Add("#FFD80073");
colorCollection.Add("#FF1BA1E2");
colorCollection.Add("#FFE671B8");
colorCollection.Add("#FFF09609");
colorCollection.Add("#FFA2C139");
colorCollection.Add("#FFD80073");
colorCollection.Add("#FF1BA1E2");
colorCollection.Add("#FFE671B8");
colorCollection.Add("#FFF09609");
colorCollection.Add("#FFA2C139");
colorCollection.Add("#FFD80073");
colorCollection.Add("#FF1BA1E2");
colorCollection.Add("#FFE671B8");
colorCollection.Add("#FFF09609");
colorCollection.Add("#FFA2C139");
colorCollection.Add("#FFD80073");
colorCollection.Add("#FF1BA1E2");
colorCollection.Add("#FFE671B8");
colorCollection.Add("#FFF09609");
colorCollection.Add("#FFA2C139");
colorCollection.Add("#FFD80073");
colorCollection.Add("#FF1BA1E2");
colorCollection.Add("#FFE671B8");
colorCollection.Add("#FFF09609");
}
private List<int> randomNums;
private void RandomNumbers()
{
randomNums = new List<int>();
Java.Util.Random rand = new Java.Util.Random();
for (int i = 0; i < 30; i++)
{
int randomNum = rand.NextInt((15 - 9) + 1) + 9;
randomNums.Add(randomNum);
}
}
// adding StartTime collection
private void SetStartTime()
{
startTimeCollection = new List<Calendar>();
Calendar currentDate = Calendar.Instance;
int count = 0;
for (int i = -5; i < 5; i++)
{
Calendar startTime = (Calendar)currentDate.Clone();
startTime.Set(
currentDate.Get(CalendarField.Year),
currentDate.Get(CalendarField.Month),
currentDate.Get(CalendarField.DayOfMonth) + i,
randomNums[count],
0,
0);
startTimeCollection.Add(startTime);
count++;
}
}
// adding EndTime collection
private void SetEndTime()
{
endTimeCollection = new List<Calendar>();
Calendar currentDate = Calendar.Instance;
int count = 0;
for (int i = -5; i < 5; i++)
{
Calendar endTime = (Calendar)currentDate.Clone();
endTime.Set(
currentDate.Get(CalendarField.Year),
currentDate.Get(CalendarField.Month),
currentDate.Get(CalendarField.DayOfMonth) + i,
randomNums[count] + 1,
0,
0);
endTimeCollection.Add(endTime);
count++;
}
}
//Creating Spinner
public override View GetPropertyWindowLayout(Context context)
{
return propertylayout;
}
private void Spinner_ItemSelected(object sender, AdapterView.ItemSelectedEventArgs e)
{
if (e.Position == 0)
{
sfSchedule.Locale = new Locale("fr");
sfSchedule.ItemsSource = GetFrenchAppointments();
}
else if (e.Position == 1)
{
sfSchedule.Locale = new Locale("es");
sfSchedule.ItemsSource = GetSpanishAppointments();
}
else if (e.Position == 2)
{
sfSchedule.Locale = new Locale("en-US");
sfSchedule.ItemsSource = GetEnglishAppointments();
}
else if (e.Position == 3)
{
sfSchedule.Locale = new Locale("zh");
sfSchedule.ItemsSource = GetChineseAppointments();
}
}
public override void OnApplyChanges()
{
base.OnApplyChanges();
}
public void Dispose()
{
if (sfSchedule != null)
{
sfSchedule.Dispose();
sfSchedule = null;
}
if (spinner != null)
{
spinner.ItemSelected -= Spinner_ItemSelected;
spinner.Dispose();
spinner = null;
}
if (propertylayout != null)
{
propertylayout.Dispose();
propertylayout = null;
}
}
}
}