-
Notifications
You must be signed in to change notification settings - Fork 0
/
GuestActivity.java
629 lines (547 loc) · 26.3 KB
/
GuestActivity.java
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
package com.example.elvin.projectapp1;
import android.app.Fragment;
import android.app.usage.UsageEvents;
import android.content.DialogInterface;
import android.content.Intent;
import android.graphics.Color;
import android.net.Uri;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.AlertDialog;
import android.support.v7.widget.CardView;
import android.view.Gravity;
import android.view.View;
import android.support.design.widget.NavigationView;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.CheckBox;
import android.widget.EditText;
import com.google.android.gms.ads.identifier.AdvertisingIdClient;
public class GuestActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
public Fragment guestmain;
public Fragment guestevents;
public Fragment guestdirect;
public Fragment guestinfo;
public Fragment guestcontact;
public android.app.FragmentTransaction ft;
public int ny = 0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_guest);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.setDrawerListener(toggle);
toggle.syncState();
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
if (findViewById(R.id.fragcontainer) != null) {
if (savedInstanceState != null) {
return;
}
guestmain = new GuestMainFrag();
ft = getFragmentManager().beginTransaction();
ft.add(R.id.fragcontainer, guestmain);
ft.commit();
} else {
guestmain = new GuestMainFrag();
ft = getFragmentManager().beginTransaction();
ft.replace(R.id.fragcontainer, guestmain);
ft.addToBackStack(null);
ft.commit();
}
}
@Override
public void onBackPressed() {
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
if (drawer.isDrawerOpen(GravityCompat.START)) {
drawer.closeDrawer(GravityCompat.START);
} else {
super.onBackPressed();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.guest, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_exit) {
AlertDialog alertDialog = new AlertDialog.Builder(GuestActivity.this).create();
alertDialog.setTitle("Confirm");
alertDialog.setMessage("Are you sure you want to exit the application?");
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Confirm",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
finish();
System.exit(0);
}
});
alertDialog.show();
return true;
} else if (id == R.id.action_help) {
AlertDialog alertDialog = new AlertDialog.Builder(GuestActivity.this).create();
alertDialog.setTitle("Help");
alertDialog.setMessage("The 'EVENTS' button will show you all of the current or upcoming events around campus.\n\n" +
"The 'DIRECTORY' button will provide you with a map of the campus\n\n" +
"The 'INFORMATION' button will give you information of the campus");
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Okay",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.show();
return true;
}
return super.onOptionsItemSelected(item);
}
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
int id = item.getItemId();
if (id == R.id.nav_events) {
guestevents = new EventFrag();
ft = getFragmentManager().beginTransaction();
ft.replace(R.id.fragcontainer, guestevents);
ft.addToBackStack(null);
ft.commit();
} else if (id == R.id.nav_directory) {
DirectFrag.showRiddle = true;
DirectFrag.showNimmocks = true;
DirectFrag.showAllison = true;
DirectFrag.showBerns = true;
DirectFrag.showTrusted = true;
DirectFrag.showCVO = true;
DirectFrag.showSand = true;
DirectFrag.showGarber= true;
DirectFrag.showWeave = true;
DirectFrag.showNorth= true;
DirectFrag.showStadium = true;
DirectFrag.showNurse = true;
DirectFrag.showClark = true;
DirectFrag.showHendricks = true;
Intent intent = new Intent(this, DirectFrag.class);
startActivity(intent);
} else if (id == R.id.nav_info) {
guestinfo = new InfoFrag();
ft = getFragmentManager().beginTransaction();
ft.replace(R.id.fragcontainer, guestinfo);
ft.addToBackStack(null);
ft.commit();
} else if (id == R.id.nav_logout) {
AlertDialog alertDialog = new AlertDialog.Builder(GuestActivity.this).create();
alertDialog.setTitle("Confirm");
alertDialog.setMessage("Are you sure you want to logout?");
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Confirm",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
finish();
System.exit(0);
}
});
alertDialog.show();
return true;
} else if (id == R.id.nav_help) {
guestcontact = new ContactFrag();
ft = getFragmentManager().beginTransaction();
ft.replace(R.id.fragcontainer, guestcontact);
ft.addToBackStack(null);
ft.commit();
} else if (id == R.id.nav_exit) {
AlertDialog alertDialog = new AlertDialog.Builder(GuestActivity.this).create();
alertDialog.setTitle("Confirm");
alertDialog.setMessage("Are you sure you want to exit the application?");
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Confirm",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
finish();
System.exit(0);
}
});
alertDialog.show();
return true;
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
}
public void eventTrans(View view) {
guestevents = new EventFrag();
ft = getFragmentManager().beginTransaction();
ft.replace(R.id.fragcontainer, guestevents);
ft.addToBackStack(null);
ft.commit();
}
public void directTrans(View view) {
DirectFrag.showRiddle = true;
DirectFrag.showNimmocks = true;
DirectFrag.showAllison = true;
DirectFrag.showBerns = true;
DirectFrag.showTrusted = true;
DirectFrag.showCVO = true;
DirectFrag.showSand = true;
DirectFrag.showGarber= true;
DirectFrag.showWeave = true;
DirectFrag.showNorth= true;
DirectFrag.showStadium = true;
DirectFrag.showNurse = true;
DirectFrag.showClark = true;
DirectFrag.showHendricks = true;
Intent intent = new Intent(this, DirectFrag.class);
startActivity(intent);
}
public void infoTrans(View view) {
guestinfo = new InfoFrag();
ft = getFragmentManager().beginTransaction();
ft.replace(R.id.fragcontainer, guestinfo);
ft.addToBackStack(null);
ft.commit();
}
public void floatbtn(View view) {
AlertDialog alertDialog = new AlertDialog.Builder(GuestActivity.this).create();
alertDialog.setTitle("Need help?");
alertDialog.setMessage("Contact us for help!");
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Continue",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
guestcontact = new ContactFrag();
ft = getFragmentManager().beginTransaction();
ft.replace(R.id.fragcontainer, guestcontact);
ft.addToBackStack(null);
ft.commit();
}
});
alertDialog.show();
}
public void generalPhone(View view) {
AlertDialog alertDialog = new AlertDialog.Builder(GuestActivity.this).create();
alertDialog.setTitle("Confirm");
alertDialog.setMessage("Call (910)-630-4256 ?");
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Call",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:(910)-630-4256"));
startActivity(callIntent);
}
});
alertDialog.show();
}
public void bussPhone(View view) {
AlertDialog alertDialog = new AlertDialog.Builder(GuestActivity.this).create();
alertDialog.setTitle("Confirm");
alertDialog.setMessage("Call (910)-630-1866 ?");
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Call",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:(910)-630-1866"));
startActivity(callIntent);
}
});
alertDialog.show();
}
public void safePhone(View view) {
AlertDialog alertDialog = new AlertDialog.Builder(GuestActivity.this).create();
alertDialog.setTitle("Confirm");
alertDialog.setMessage("Call (910)-630-6132 ?");
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Call",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:910-630-6132"));
startActivity(callIntent);
}
});
alertDialog.show();
}
public void event1G (View view){
AlertDialog alertDialog = new AlertDialog.Builder(GuestActivity.this).create();
alertDialog.setTitle("Lacrosse Game");
alertDialog.setMessage("Methodist University vs Ferrum\n\nThis event is located at Monarch Stadium");
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "Return",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Directory",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
DirectFrag.showRiddle = false;
DirectFrag.showNimmocks = false;
DirectFrag.showAllison = false;
DirectFrag.showBerns = false;
DirectFrag.showTrusted = false;
DirectFrag.showCVO = false;
DirectFrag.showSand = false;
DirectFrag.showGarber= false;
DirectFrag.showWeave = false;
DirectFrag.showNorth= false;
DirectFrag.showStadium = true;
DirectFrag.showNurse = false;
DirectFrag.showClark = false;
DirectFrag.showHendricks = false;
Intent intent = new Intent(GuestActivity.this,DirectFrag.class);
startActivity(intent);
}
});
alertDialog.show();
}
public void event2G (View view){
AlertDialog alertDialog = new AlertDialog.Builder(GuestActivity.this).create();
alertDialog.setTitle("Artificial Intelligence Lecture");
alertDialog.setMessage("Learn the basic applications of A.I\n\nThis event is located at Monarch Stadium");
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "Return",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Directory",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
DirectFrag.showRiddle = false;
DirectFrag.showNimmocks = false;
DirectFrag.showAllison = false;
DirectFrag.showBerns = false;
DirectFrag.showTrusted = false;
DirectFrag.showCVO = false;
DirectFrag.showSand = false;
DirectFrag.showGarber= false;
DirectFrag.showWeave = false;
DirectFrag.showNorth= false;
DirectFrag.showStadium = false;
DirectFrag.showNurse = false;
DirectFrag.showClark = true;
DirectFrag.showHendricks = false;
Intent intent = new Intent(GuestActivity.this, DirectFrag.class);
startActivity(intent);
}
});
alertDialog.show();
}
public void event3G (View view){
AlertDialog alertDialog = new AlertDialog.Builder(GuestActivity.this).create();
alertDialog.setTitle("6th Annual CURC Symposium");
alertDialog.setMessage("Come support the Methodist University undergraduates with their reasearch" +
"and creativity!\n\nThis event is located in the Hendricks Science Complex and the Nursing Building");
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "Return",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Directory",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
DirectFrag.showRiddle = false;
DirectFrag.showNimmocks = false;
DirectFrag.showAllison = false;
DirectFrag.showBerns = false;
DirectFrag.showTrusted = false;
DirectFrag.showCVO = false;
DirectFrag.showSand = false;
DirectFrag.showGarber= false;
DirectFrag.showWeave = false;
DirectFrag.showNorth= false;
DirectFrag.showStadium = false;
DirectFrag.showNurse = true;
DirectFrag.showClark = false;
DirectFrag.showHendricks = true;
Intent intent = new Intent(GuestActivity.this, DirectFrag.class);
startActivity(intent);
}
});
alertDialog.show();
}
public void event4G (View view){
AlertDialog alertDialog = new AlertDialog.Builder(GuestActivity.this).create();
alertDialog.setTitle("Basketball Game");
alertDialog.setMessage("Methodist University vs Greensboro\n\n" +
"This event is located in the Riddle Athletic Center");
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "Return",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Directory",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
DirectFrag.showRiddle = true;
DirectFrag.showNimmocks = false;
DirectFrag.showAllison = false;
DirectFrag.showBerns = false;
DirectFrag.showTrusted = false;
DirectFrag.showCVO = false;
DirectFrag.showSand = false;
DirectFrag.showGarber= false;
DirectFrag.showWeave = false;
DirectFrag.showNorth= false;
DirectFrag.showStadium = false;
DirectFrag.showNurse = false;
DirectFrag.showClark = false;
DirectFrag.showHendricks = false;
Intent intent = new Intent(GuestActivity.this, DirectFrag.class);
startActivity(intent);
}
});
alertDialog.show();
}
public void event5G (View view){
AlertDialog alertDialog = new AlertDialog.Builder(GuestActivity.this).create();
alertDialog.setTitle("Poetry Night");
alertDialog.setMessage("While words may not fully describe how you feel. Poetry night is a good start!\n\n" +
"This event is located in the Berns Student Center");
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "Return",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Directory",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
DirectFrag.showRiddle = false;
DirectFrag.showNimmocks = false;
DirectFrag.showAllison = false;
DirectFrag.showBerns = false;
DirectFrag.showTrusted = false;
DirectFrag.showCVO = false;
DirectFrag.showSand = false;
DirectFrag.showGarber= false;
DirectFrag.showWeave = false;
DirectFrag.showNorth= false;
DirectFrag.showStadium = false;
DirectFrag.showNurse = true;
DirectFrag.showClark = false;
DirectFrag.showHendricks = true;
Intent intent = new Intent(GuestActivity.this, DirectFrag.class);
startActivity(intent);
}
});
alertDialog.show();
}
public void filterEventShow (View view){
EventFrag.cvFilter = (CardView)findViewById(R.id.card_filter);
if(ny == 0){
EventFrag.cvFilter.setVisibility(View.VISIBLE);
ny +=1;
}
else if (ny == 1){
EventFrag.cvFilter.setVisibility(View.GONE);
ny -=1;
}
}
public void filterEventGone (View view){
EventFrag.cvFilter = (CardView)findViewById(R.id.card_filter);
EventFrag.cvFilter.setVisibility(View.GONE);
}
public void filterEventG (View view){
EventFrag.chkAcaG = (CheckBox)findViewById(R.id.chkAcaG);
EventFrag.chkFestG = (CheckBox)findViewById(R.id.chkFestG);
EventFrag.chkOtherG = (CheckBox)findViewById(R.id.chkOtherG);
EventFrag.chkSportG = (CheckBox)findViewById(R.id.chkSportG);
EventFrag.cv1G = (CardView) findViewById(R.id.card_view1G);
EventFrag.cv2G = (CardView) findViewById(R.id.card_view2G);
EventFrag.cv3G = (CardView) findViewById(R.id.card_view3G);
EventFrag.cv4G = (CardView) findViewById(R.id.card_view4G);
EventFrag.cv5G = (CardView) findViewById(R.id.card_view5G);
EventFrag.searchG = (EditText)findViewById(R.id.searchG);
if(EventFrag.chkAcaG.isChecked()||EventFrag.chkFestG.isChecked()||
EventFrag.chkOtherG.isChecked()||EventFrag.chkSportG.isChecked()){
EventFrag.cv1G.setVisibility(View.GONE);
EventFrag.cv2G.setVisibility(View.GONE);
EventFrag.cv3G.setVisibility(View.GONE);
EventFrag.cv4G.setVisibility(View.GONE);
EventFrag.cv5G.setVisibility(View.GONE);
}else {
EventFrag.cv1G.setVisibility(View.VISIBLE);
EventFrag.cv2G.setVisibility(View.VISIBLE);
EventFrag.cv3G.setVisibility(View.VISIBLE);
EventFrag.cv4G.setVisibility(View.VISIBLE);
EventFrag.cv5G.setVisibility(View.VISIBLE);
}
if(EventFrag.chkSportG.isChecked()){
EventFrag.cv1G.setVisibility(View.VISIBLE);
EventFrag.cv4G.setVisibility(View.VISIBLE);
}
if(EventFrag.chkFestG.isChecked()){
}
if(EventFrag.chkAcaG.isChecked()){
EventFrag.cv2G.setVisibility(View.VISIBLE);
EventFrag.cv3G.setVisibility(View.VISIBLE);
EventFrag.cv5G.setVisibility(View.VISIBLE);
}
if(EventFrag.chkOtherG.isChecked()){
}
if(EventFrag.searchG.getText().toString()=="Clark"){
EventFrag.cv3G.setVisibility(View.VISIBLE);
}
EventFrag.cvFilter = (CardView)findViewById(R.id.card_filter);
EventFrag.cvFilter.setVisibility(View.GONE);
}
}