/android/import-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/import-contacts

« back to all changes in this revision

Viewing changes to src/org/waxworlds/importcontacts/Doit.java

  • Committer: edam
  • Date: 2009-10-03 16:58:29 UTC
  • Revision ID: edam@waxworlds.org-20091003165829-vxhwdodf3400ugs3
Tags: 0.9
- converted project to use Android 1.5 SDK
- cleaned-up some whitespace/newlines in source

Show diffs side-by-side

added added

removed removed

1
1
/*
2
2
 * Doit.java
3
3
 *
4
 
 * Copyright (C) 2009 Tim Marston <tim@ed.am>
 
4
 * Copyright (C) 2009 Tim Marston <edam@waxworlds.org>
5
5
 *
6
6
 * This file is part of the Import Contacts program (hereafter referred
7
 
 * to as "this program").  For more information, see
8
 
 * http://ed.am/dev/android/import-contacts
 
7
 * to as "this program"). For more information, see
 
8
 * http://www.waxworlds.org/edam/software/android/import-contacts
9
9
 *
10
10
 * This program is free software: you can redistribute it and/or modify
11
11
 * it under the terms of the GNU General Public License as published by
21
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
22
 */
23
23
 
24
 
package am.ed.importcontacts;
 
24
package org.waxworlds.importcontacts;
25
25
 
26
26
import android.app.AlertDialog;
27
27
import android.app.Dialog;
46
46
        private final static int DIALOG_CONTINUEORABORT = 1;
47
47
        private final static int DIALOG_MERGEPROMPT = 2;
48
48
 
49
 
        public final static int MESSAGE_ALLDONE = 0;
50
 
        public final static int MESSAGE_ABORT = 1;
 
49
        public final static int MESSAGE_FINISHED_ALLDONE = 0;
 
50
        public final static int MESSAGE_FINISHED = 1;
 
51
        public final static int MESSAGE_FINISHED_GOBACK = 2;
51
52
        public final static int MESSAGE_ERROR = 3;
52
53
        public final static int MESSAGE_CONTINUEORABORT = 4;
53
54
        public final static int MESSAGE_SETPROGRESSMESSAGE = 5;
68
69
        public final static int NEXT_BEGIN = 0;
69
70
        public final static int NEXT_CLOSE = 1;
70
71
 
71
 
        private boolean _started_progress;
72
 
        private int _max_progress;
73
 
        private int _tmp_progress;
 
72
        private boolean _startedProgress;
 
73
        private int _maxProgress;
 
74
        private int _tmpProgress;
74
75
        private int _progress;
75
 
        protected String _dialog_message;
76
 
        private Dialog _merge_prompt_dialog;
77
 
        private boolean _merge_prompt_always_selected;
78
 
        private int _next_action;
79
 
        private int _current_dialog_id;
 
76
        protected String _dialogMessage;
 
77
        private Dialog _mergePromptDialog;
 
78
        private boolean _mergePromptAlwaysSelected;
 
79
        private int _nextAction;
80
80
 
81
 
        private int _count_overwrites;
82
 
        private int _count_creates;
83
 
        private int _count_merges;
84
 
        private int _count_skips;
 
81
        private int _countOverwrites;
 
82
        private int _countCreates;
 
83
        private int _countMerges;
 
84
        private int _countSkips;
85
85
 
86
86
        protected Importer _importer = null;
87
87
 
93
93
                public void handleMessage( Message msg ) {
94
94
                        switch( msg.what )
95
95
                        {
96
 
                        case MESSAGE_ALLDONE:
 
96
                        case MESSAGE_FINISHED_ALLDONE:
97
97
                                ( (TextView)findViewById( R.id.doit_alldone ) ).
98
 
                                        setVisibility( View.VISIBLE );
99
 
                                ( (Button)findViewById( R.id.back ) ).setEnabled( false );
 
98
                                                setVisibility( View.VISIBLE );
 
99
                                // fall through
 
100
                        case MESSAGE_FINISHED:
100
101
                                updateNext( NEXT_CLOSE );
101
102
                                findViewById( R.id.doit_abort_disp ).setVisibility(
102
 
                                        View.GONE );
 
103
                                                View.GONE );
103
104
                                break;
104
 
                        case MESSAGE_ABORT:
105
 
                                manualAbort();
 
105
                        case MESSAGE_FINISHED_GOBACK:
 
106
                                ( (Button)findViewById( R.id.back ) ).setEnabled( true );
 
107
                                findViewById( R.id.doit_abort_disp ).setVisibility(
 
108
                                                View.GONE );
106
109
                                break;
107
110
                        case MESSAGE_ERROR:
108
 
                                _dialog_message = (String)msg.obj;
 
111
                                Doit.this._dialogMessage = (String)msg.obj;
109
112
                                showDialog( DIALOG_ERROR );
110
113
                                break;
111
114
                        case MESSAGE_CONTINUEORABORT:
112
 
                                _dialog_message = (String)msg.obj;
 
115
                                Doit.this._dialogMessage = (String)msg.obj;
113
116
                                showDialog( DIALOG_CONTINUEORABORT );
114
117
                                break;
115
118
                        case MESSAGE_SETPROGRESSMESSAGE:
116
119
                                ( (TextView)findViewById( R.id.doit_percentage ) ).
117
 
                                        setText( (String)msg.obj );
 
120
                                                setText( (String)msg.obj );
118
121
                                break;
119
122
                        case MESSAGE_SETMAXPROGRESS:
120
 
                                if( _max_progress > 0 ) {
121
 
                                        if( _tmp_progress == _max_progress - 1 )
122
 
                                                _tmp_progress = (Integer)msg.obj;
123
 
                                        if( _progress == _max_progress - 1 )
 
123
                                if( _maxProgress > 0 ) {
 
124
                                        if( _tmpProgress == _maxProgress - 1 )
 
125
                                                _tmpProgress = (Integer)msg.obj;
 
126
                                        if( _progress == _maxProgress - 1 )
124
127
                                                _progress = (Integer)msg.obj;
125
128
                                }
126
 
                                _max_progress = (Integer)msg.obj;
 
129
                                _maxProgress = (Integer)msg.obj;
127
130
                                updateProgress();
128
131
                                break;
129
132
                        case MESSAGE_SETTMPPROGRESS:
130
 
                                _tmp_progress = (Integer)msg.obj;
 
133
                                _tmpProgress = (Integer)msg.obj;
131
134
                                updateProgress();
132
135
                                break;
133
136
                        case MESSAGE_SETPROGRESS:
134
 
                                _started_progress = true;
 
137
                                _startedProgress = true;
135
138
                                _progress = (Integer)msg.obj;
136
139
                                updateProgress();
137
140
                                break;
138
141
                        case MESSAGE_MERGEPROMPT:
139
 
                                _dialog_message = (String)msg.obj;
 
142
                                _dialogMessage = (String)msg.obj;
140
143
                                showDialog( DIALOG_MERGEPROMPT );
141
144
                                break;
142
145
                        case MESSAGE_CONTACTOVERWRITTEN:
143
 
                                _count_overwrites++;
 
146
                                _countOverwrites++;
144
147
                                updateStats();
145
148
                                break;
146
149
                        case MESSAGE_CONTACTCREATED:
147
 
                                _count_creates++;
 
150
                                _countCreates++;
148
151
                                updateStats();
149
152
                                break;
150
153
                        case MESSAGE_CONTACTMERGED:
151
 
                                _count_merges++;
 
154
                                _countMerges++;
152
155
                                updateStats();
153
156
                                break;
154
157
                        case MESSAGE_CONTACTSKIPPED:
155
 
                                _count_skips++;
 
158
                                _countSkips++;
156
159
                                updateStats();
157
160
                                break;
158
161
                        default:
162
165
        }
163
166
 
164
167
        @Override
165
 
        protected void onCreate(Bundle saved_instance_state)
 
168
        protected void onCreate(Bundle savedInstanceState)
166
169
        {
167
170
                setContentView( R.layout.doit );
168
 
                super.onCreate( saved_instance_state );
 
171
                super.onCreate( savedInstanceState );
169
172
 
170
173
                // hide page 2
171
174
                ( findViewById( R.id.doit_page_2 ) ).setVisibility( View.GONE );
178
181
                        }
179
182
                } );
180
183
 
181
 
                _started_progress = false;
182
 
                _max_progress = 0;
183
 
                _tmp_progress = 0;
 
184
                _startedProgress = false;
 
185
                _maxProgress = 0;
 
186
                _tmpProgress = 0;
184
187
                _progress = 0;
185
188
                _handler = new DoitHandler();
186
189
 
187
 
                _count_overwrites = 0;
188
 
                _count_creates = 0;
189
 
                _count_merges = 0;
190
 
                _count_skips = 0;
 
190
                _countOverwrites = 0;
 
191
                _countCreates = 0;
 
192
                _countMerges = 0;
 
193
                _countSkips = 0;
191
194
 
192
195
                updateNext( NEXT_BEGIN );
193
196
 
201
204
                super.onPause();
202
205
 
203
206
                // saving the state of an import sounds complicated! Lets just abort!
204
 
                if( _next_action != NEXT_CLOSE )
205
 
                        manualAbort( true );
 
207
                abortImport( true );
206
208
        }
207
209
 
208
210
        @Override
209
 
        protected Dialog onCreateDialog( int id )
 
211
        protected Dialog onCreateDialog(int id)
210
212
        {
211
213
                switch( id )
212
214
                {
213
215
                case DIALOG_ERROR:
214
216
                        return new AlertDialog.Builder( this )
215
 
                                .setIcon( R.drawable.alert_dialog_icon )
216
 
                                .setTitle( R.string.error_title )
217
 
                                .setMessage( "" )
218
 
                                .setPositiveButton( R.string.error_ok,
219
 
                                        new DialogInterface.OnClickListener() {
220
 
                                                public void onClick( DialogInterface dialog,
221
 
                                                        int whichButton )
222
 
                                                {
223
 
                                                        if( Doit.this != null )
224
 
                                                                Doit.this._importer.wake();
 
217
                                        .setIcon( R.drawable.alert_dialog_icon )
 
218
                                        .setTitle( R.string.error_title )
 
219
                                        .setMessage( "" )
 
220
                                        .setPositiveButton( R.string.error_ok,
 
221
                                                        new DialogInterface.OnClickListener() {
 
222
                                                public void onClick(DialogInterface dialog,
 
223
                                                                int whichButton) {
 
224
                                                        Doit.this._importer.wake();
225
225
                                                }
226
226
                                        } )
227
 
                                .setOnCancelListener( _dialog_on_cancel_listener )
228
 
                                .create();
 
227
                                        .setOnCancelListener( _dialogOnCancelListener )
 
228
                                        .create();
229
229
                case DIALOG_CONTINUEORABORT:
230
230
                        return new AlertDialog.Builder( this )
231
 
                                .setIcon( R.drawable.alert_dialog_icon )
232
 
                                .setTitle( R.string.error_title )
233
 
                                .setMessage( "" )
234
 
                                .setPositiveButton( R.string.error_continue,
235
 
                                        new DialogInterface.OnClickListener() {
236
 
                                                public void onClick( DialogInterface dialog,
237
 
                                                        int which_button )
238
 
                                                {
239
 
                                                        if( Doit.this != null )
240
 
                                                                Doit.this._importer.wake(
 
231
                                        .setIcon( R.drawable.alert_dialog_icon )
 
232
                                        .setTitle( R.string.error_title )
 
233
                                        .setMessage( "" )
 
234
                                        .setPositiveButton( R.string.error_continue,
 
235
                                                        new DialogInterface.OnClickListener() {
 
236
                                                public void onClick(DialogInterface dialog,
 
237
                                                                int whichButton) {
 
238
                                                        Doit.this._importer.wake(
241
239
                                                                        Importer.RESPONSE_POSITIVE );
242
240
                                                }
243
241
                                        } )
244
 
                                .setNegativeButton( R.string.error_abort,
245
 
                                        new DialogInterface.OnClickListener() {
246
 
                                                public void onClick( DialogInterface dialog,
247
 
                                                        int which_button )
248
 
                                                {
249
 
                                                        if( Doit.this != null )
250
 
                                                                Doit.this._importer.wake(
 
242
                                        .setNegativeButton( R.string.error_abort,
 
243
                                                        new DialogInterface.OnClickListener() {
 
244
                                                public void onClick(DialogInterface dialog,
 
245
                                                                int whichButton) {
 
246
                                                        Doit.this._importer.wake(
251
247
                                                                        Importer.RESPONSE_NEGATIVE );
252
248
                                                }
253
249
                                        } )
254
 
                                .setOnCancelListener( _dialog_on_cancel_listener )
255
 
                                .create();
 
250
                                        .setOnCancelListener( _dialogOnCancelListener )
 
251
                                        .create();
256
252
                case DIALOG_MERGEPROMPT:
257
253
                        // custom layout in an AlertDialog
258
254
                        LayoutInflater factory = LayoutInflater.from( this );
259
 
                        final View dialog_view = factory.inflate(
260
 
                                R.layout.mergeprompt, null );
261
 
                        ( (CheckBox)dialog_view.findViewById( R.id.mergeprompt_always ) ).
262
 
                                setOnCheckedChangeListener(
263
 
                                        new CompoundButton.OnCheckedChangeListener() {
264
 
                                                public void onCheckedChanged(
265
 
                                                        CompoundButton button_view, boolean is_checked )
266
 
                                                {
267
 
                                                        if( Doit.this != null )
268
 
                                                                Doit.this._merge_prompt_always_selected =
269
 
                                                                        is_checked;
270
 
                                                }
271
 
                                        } );
272
 
                        ( (Button)dialog_view.findViewById( R.id.merge_keep ) ).
273
 
                                setOnClickListener( _merge_prompt_button_listener );
274
 
                        ( (Button)dialog_view.findViewById( R.id.merge_overwrite ) ).
275
 
                                setOnClickListener( _merge_prompt_button_listener );
276
 
                        ( (Button)dialog_view.findViewById( R.id.merge_merge ) ).
277
 
                                setOnClickListener( _merge_prompt_button_listener );
278
 
                        ( (Button)dialog_view.findViewById( R.id.abort ) ).
279
 
                                setOnClickListener( _merge_prompt_button_listener );
280
 
                        _merge_prompt_always_selected = false;
 
255
                        final View dialogView = factory.inflate(
 
256
                                        R.layout.mergeprompt, null );
 
257
                        ( (CheckBox)dialogView.findViewById( R.id.mergeprompt_always ) ).
 
258
                                        setOnCheckedChangeListener(
 
259
                                                        new CompoundButton.OnCheckedChangeListener() {
 
260
                                public void onCheckedChanged( CompoundButton buttonView,
 
261
                                                boolean isChecked ) {
 
262
                                        Doit.this._mergePromptAlwaysSelected = isChecked;
 
263
                                }
 
264
                        } );
 
265
                        ( (Button)dialogView.findViewById( R.id.merge_keep ) ).
 
266
                                        setOnClickListener( _mergePromptButtonListener );
 
267
                        ( (Button)dialogView.findViewById( R.id.merge_overwrite ) ).
 
268
                                        setOnClickListener( _mergePromptButtonListener );
 
269
                        ( (Button)dialogView.findViewById( R.id.merge_merge ) ).
 
270
                                        setOnClickListener( _mergePromptButtonListener );
 
271
                        ( (Button)dialogView.findViewById( R.id.abort ) ).
 
272
                                        setOnClickListener( _mergePromptButtonListener );
 
273
                        _mergePromptAlwaysSelected = false;
281
274
                        return new AlertDialog.Builder( this )
282
 
                                .setIcon( R.drawable.alert_dialog_icon )
283
 
                                .setTitle( R.string.mergeprompt_title )
284
 
                                .setView( dialog_view )
285
 
                                .setOnCancelListener( _dialog_on_cancel_listener )
286
 
                                .create();
 
275
                                        .setIcon( R.drawable.alert_dialog_icon )
 
276
                                        .setTitle( R.string.mergeprompt_title )
 
277
                                        .setView( dialogView )
 
278
                                        .setOnCancelListener( _dialogOnCancelListener )
 
279
                                        .create();
287
280
                }
288
281
                return null;
289
282
        }
290
283
 
291
 
        private OnClickListener _merge_prompt_button_listener =
292
 
                new OnClickListener()
293
 
        {
 
284
        private OnClickListener _mergePromptButtonListener = new OnClickListener() {
294
285
                public void onClick( View view )
295
286
                {
296
 
                        if( Doit.this == null ) return;
297
 
 
298
287
                        // handle abort
299
288
                        if( view.getId() == R.id.abort )
300
289
                                manualAbort();
301
290
 
302
 
                        // else, response (just check we haven't aborted already!)
303
 
                        else if( Doit.this._importer != null ) {
304
 
                                int response_extra = _merge_prompt_always_selected?
305
 
                                        Importer.RESPONSEEXTRA_ALWAYS : Importer.RESPONSEEXTRA_NONE;
 
291
                        // else, response
 
292
                        else {
 
293
                                int responseExtra = _mergePromptAlwaysSelected?
 
294
                                                Importer.RESPONSEEXTRA_ALWAYS : Importer.RESPONSEEXTRA_NONE;
306
295
                                Doit.this._importer.wake( convertIdToAction( view.getId() ),
307
 
                                        response_extra );
 
296
                                                responseExtra );
308
297
                        }
309
298
 
310
299
                        // close dialog and free (don't keep a reference)
311
 
                        Doit.this._merge_prompt_dialog.dismiss();
312
 
                        Doit.this._merge_prompt_dialog = null;
 
300
                        Doit.this._mergePromptDialog.dismiss();
 
301
                        Doit.this._mergePromptDialog = null;
313
302
                }
314
303
        };
315
304
 
319
308
                Button next = (Button)findViewById( R.id.next );
320
309
                next.setEnabled( false );
321
310
 
322
 
                switch( _next_action )
 
311
                switch( _nextAction )
323
312
                {
324
313
                case NEXT_BEGIN:
325
314
                        importContacts();
326
315
                        break;
327
316
                case NEXT_CLOSE:
328
 
                        setResult( RESULT_OK );
 
317
                        setResult( RESULT_CANCELED );
329
318
                        finish();
330
319
                        break;
331
320
                }
333
322
 
334
323
        private void manualAbort()
335
324
        {
336
 
                manualAbort( false );
337
 
        }
338
 
 
339
 
        private void manualAbort( boolean show_toaster_popup )
340
 
        {
341
 
                abortImport( show_toaster_popup );
342
 
 
 
325
                abortImport( false );
343
326
                updateNext( NEXT_CLOSE );
344
327
                ( (Button)findViewById( R.id.back ) ).setEnabled( true );
345
328
                findViewById( R.id.doit_abort_disp ).setVisibility( View.GONE );
346
 
                ( (TextView)findViewById( R.id.doit_aborted ) ).
347
 
                        setVisibility( View.VISIBLE );
348
 
                ( (TextView)findViewById( R.id.doit_alldone ) ).
349
 
                        setVisibility( View.GONE );
350
 
 
351
 
                // close any open dialogs
352
 
                try {
353
 
                        dismissDialog( _current_dialog_id );
354
 
                }
355
 
                catch( Exception e ) {
356
 
                        // ignore errors
357
 
                }
358
329
        }
359
330
 
360
 
        private void updateNext( int next_action )
 
331
        private void updateNext( int nextAction )
361
332
        {
362
333
                Button next = (Button)findViewById( R.id.next );
363
 
                switch( next_action ) {
 
334
                switch( nextAction ) {
364
335
                case NEXT_BEGIN:        next.setText( R.string.doit_begin ); break;
365
336
                case NEXT_CLOSE:        next.setText( R.string.doit_close ); break;
366
337
                }
367
338
                next.setEnabled( true );
368
 
                _next_action = next_action;
 
339
                _nextAction = nextAction;
369
340
        }
370
341
 
371
342
        public static int convertIdToAction( int id ) {
386
357
                }
387
358
        }
388
359
 
389
 
        private DialogInterface.OnCancelListener _dialog_on_cancel_listener =
390
 
                new DialogInterface.OnCancelListener()
391
 
        {
 
360
        private DialogInterface.OnCancelListener _dialogOnCancelListener =
 
361
                        new DialogInterface.OnCancelListener() {
392
362
                public void onCancel( DialogInterface dialog ) {
393
 
                        manualAbort();
 
363
                        setResult( RESULT_CANCELED );
 
364
                        finish();
394
365
                }
395
366
        };
396
367
 
397
 
 
398
368
        @Override
399
 
        protected void onActivityResult( int request_code, int result_code,
400
 
                Intent data )
 
369
        protected void onActivityResult( int requestCode, int resultCode,
 
370
                        Intent data )
401
371
        {
402
372
                // if we're cancelling, abort any import
403
 
                if( result_code == RESULT_CANCELED )
 
373
                if( resultCode == RESULT_CANCELED )
404
374
                        abortImport( true );
405
375
        }
406
376
 
407
377
        @Override
408
 
        protected void onPrepareDialog( int id, Dialog dialog )
 
378
        protected void onPrepareDialog(int id, Dialog dialog)
409
379
        {
410
 
                _current_dialog_id = id;
411
 
 
412
380
                switch( id )
413
381
                {
414
382
                case DIALOG_ERROR:      // fall through
415
383
                case DIALOG_CONTINUEORABORT:
416
384
                        // set dialog message
417
 
                        ( (AlertDialog)dialog ).setMessage( _dialog_message );
 
385
                        ( (AlertDialog)dialog ).setMessage( _dialogMessage );
418
386
                        break;
419
387
                case DIALOG_MERGEPROMPT:
420
388
                        // set contact's name
421
 
                        ( (TextView)dialog.findViewById( R.id.mergeprompt_name ) )
422
 
                                .setText( _dialog_message );
 
389
                        ( (TextView)dialog.findViewById( R.id.mergeprompt_name ) ).setText(
 
390
                                        _dialogMessage );
423
391
                        // and set up reference to dialog
424
 
                        _merge_prompt_dialog = dialog;
 
392
                        _mergePromptDialog = dialog;
425
393
                        break;
426
394
                }
427
395
 
438
406
                ( (Button)findViewById( R.id.back ) ).setEnabled( false );
439
407
 
440
408
                // create importer
441
 
                _importer = new VcardImporter( this );
 
409
                _importer = new VCFImporter( this );
442
410
 
443
411
                // start the service's thread
444
412
                _importer.start();
447
415
        private void updateProgress()
448
416
        {
449
417
                ProgressBar bar = (ProgressBar)findViewById( R.id.doit_progress );
450
 
                TextView out_of = (TextView)findViewById( R.id.doit_outof );
 
418
                TextView outOf = (TextView)findViewById( R.id.doit_outof );
451
419
 
452
 
                if( _max_progress > 0 )
 
420
                if( _maxProgress > 0 )
453
421
                {
454
 
                        bar.setMax( _max_progress );
455
 
                        bar.setSecondaryProgress( _tmp_progress );
 
422
                        bar.setMax( _maxProgress );
 
423
                        bar.setSecondaryProgress( _tmpProgress );
456
424
 
457
 
                        if( _started_progress )
 
425
                        if( _startedProgress )
458
426
                        {
459
427
                                ( (TextView)findViewById( R.id.doit_percentage ) ).setText(
460
 
                                        (int)Math.round( 100 * _progress / _max_progress ) + "%" );
461
 
                                out_of.setText( _progress + "/" + _max_progress );
 
428
                                                (int)Math.round( 100 * _progress / _maxProgress ) + "%" );
 
429
                                outOf.setText( _progress + "/" + _maxProgress );
462
430
                                bar.setProgress( _progress );
463
431
                        }
464
432
                }
467
435
        private void updateStats()
468
436
        {
469
437
                ( (TextView)findViewById( R.id.doit_overwrites ) ).setText(
470
 
                        "" + _count_overwrites );
 
438
                                "" + _countOverwrites );
471
439
                ( (TextView)findViewById( R.id.doit_creates ) ).setText(
472
 
                        "" + _count_creates );
 
440
                                "" + _countCreates );
473
441
                ( (TextView)findViewById( R.id.doit_merges ) ).setText(
474
 
                        "" + _count_merges );
 
442
                                "" + _countMerges );
475
443
                ( (TextView)findViewById( R.id.doit_skips ) ).setText(
476
 
                        "" + _count_skips );
 
444
                                "" + _countSkips );
477
445
        }
478
446
 
479
 
        private void abortImport( boolean show_toaster_popup )
 
447
        private void abortImport( boolean showToasterPopup )
480
448
        {
481
449
                if( _importer != null )
482
450
                {
493
461
                                }
494
462
 
495
463
                                // notify the user
496
 
                                if( show_toaster_popup )
 
464
                                if( showToasterPopup )
497
465
                                        Toast.makeText( this, R.string.doit_importaborted,
498
 
                                                Toast.LENGTH_LONG ).show();
 
466
                                                        Toast.LENGTH_LONG ).show();
499
467
                        }
500
468
                }
501
469