/android/export-contacts

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

« back to all changes in this revision

Viewing changes to src/am/ed/exportcontacts/ConfigureVCF.java

  • Committer: edam
  • Date: 2012-04-24 11:45:53 UTC
  • Revision ID: tim@ed.am-20120424114553-8m7zwbs1k691devz
fixed bad error_ok string and added check for no sd card

Show diffs side-by-side

added added

removed removed

1
1
/*
2
2
 * ConfigureVCF.java
3
3
 *
4
 
 * Copyright (C) 2010 Tim Marston <edam@waxworlds.org>
 
4
 * Copyright (C) 2010 Tim Marston <tim@ed.am>
5
5
 *
6
6
 * This file is part of the Export Contacts program (hereafter referred
7
7
 * to as "this program"). For more information, see
8
 
 * http://www.waxworlds.org/edam/software/android/export-contacts
 
8
 * http://ed.am/dev/android/export-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 org.waxworlds.edam.exportcontacts;
25
 
 
 
24
package am.ed.exportcontacts;
 
25
 
 
26
import java.io.IOException;
 
27
 
 
28
import android.app.AlertDialog;
26
29
import android.app.Dialog;
27
30
import android.content.DialogInterface;
28
31
import android.content.SharedPreferences;
29
32
import android.os.Bundle;
 
33
import android.os.Environment;
30
34
import android.view.View;
31
35
import android.widget.Button;
32
36
import android.widget.EditText;
34
38
public class ConfigureVCF extends WizardActivity
35
39
{
36
40
        public final static int DIALOG_FILECHOOSER = 1;
 
41
        public final static int DIALOG_NOSDCARD = 2;
37
42
 
38
43
        private FileChooser _file_chooser = null;
39
44
 
48
53
 
49
54
                setNextActivity( Doit.class );
50
55
 
 
56
                // get sdcard prefix
 
57
                String sdcard_prefix = getSdCardPathPrefix();
 
58
                if( sdcard_prefix == null )
 
59
                        showDialog( DIALOG_NOSDCARD );
 
60
 
51
61
                // create file chooser
52
62
                _file_chooser = new FileChooser( this );
53
63
                _file_chooser.setMode( FileChooser.MODE_DIR );
108
118
                        "android-contacts.vcf" ) );
109
119
        }
110
120
 
 
121
        static protected String getSdCardPathPrefix()
 
122
        {
 
123
                // check sdcard status
 
124
                String state = Environment.getExternalStorageState();
 
125
                if( !Environment.MEDIA_MOUNTED.equals( state ) &&
 
126
                        !Environment.MEDIA_MOUNTED_READ_ONLY.equals( state ) )
 
127
                {
 
128
                        // no sdcard mounted
 
129
                        return null;
 
130
                }
 
131
 
 
132
                // get sdcard path
 
133
                String sdcard_path;
 
134
                try {
 
135
                        sdcard_path = Environment.getExternalStorageDirectory()
 
136
                                .getCanonicalPath();
 
137
                        if( sdcard_path.charAt( sdcard_path.length() - 1 ) == '/' )
 
138
                                sdcard_path =
 
139
                                        sdcard_path.substring( 0, sdcard_path.length() - 1 );
 
140
                }
 
141
                catch( IOException e ) {
 
142
                        sdcard_path = null;
 
143
                }
 
144
 
 
145
                return sdcard_path;
 
146
        }
 
147
 
111
148
        protected void updatePathButton()
112
149
        {
113
150
                Button path_button = (Button)findViewById( R.id.path );
136
173
                case DIALOG_FILECHOOSER:
137
174
                        ret = _file_chooser.onCreateDialog();
138
175
                        break;
 
176
 
 
177
                case DIALOG_NOSDCARD:
 
178
                        ret = new AlertDialog.Builder( this )
 
179
                        .setIcon( R.drawable.alert_dialog_icon )
 
180
                        .setTitle( R.string.error_title )
 
181
                        .setMessage( R.string.error_nosdcard )
 
182
                        .setPositiveButton( R.string.error_ok,
 
183
                                new DialogInterface.OnClickListener() {
 
184
                                        public void onClick(DialogInterface dialog,
 
185
                                                int whichButton)
 
186
                                        {
 
187
                                                // close the whole app!
 
188
                                                setResult( RESULT_OK );
 
189
                                                finish();
 
190
                                        }
 
191
                                } )
 
192
                        .create();
 
193
                        break;
139
194
                }
140
195
 
141
196
                return ret;