/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: Tim Marston
  • Date: 2014-03-02 11:04:33 UTC
  • Revision ID: tim@ed.am-20140302110433-9crgerrfbh30bs39
bump version to 1.0.3

Show diffs side-by-side

added added

removed removed

4
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
 
 * to as "this program"). For more information, see
 
7
 * to as "this program").  For more information, see
8
8
 * http://ed.am/dev/android/export-contacts
9
9
 *
10
10
 * This program is free software: you can redistribute it and/or modify
23
23
 
24
24
package am.ed.exportcontacts;
25
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
 
 
45
        // the sdcard path prefix
 
46
        private String _sdcard_prefix;
 
47
 
40
48
        // the save path
41
49
        private String _path;
42
50
 
48
56
 
49
57
                setNextActivity( Doit.class );
50
58
 
 
59
                // get sdcard prefix
 
60
                _sdcard_prefix = getSdCardPathPrefix();
 
61
                if( _sdcard_prefix == null )
 
62
                        showDialog( DIALOG_NOSDCARD );
 
63
 
51
64
                // create file chooser
52
65
                _file_chooser = new FileChooser( this );
53
66
                _file_chooser.setMode( FileChooser.MODE_DIR );
63
76
                                        }
64
77
                                }
65
78
                        } );
66
 
                _file_chooser.setPathPrefix( "/sdcard" );
 
79
                if( _sdcard_prefix != null )
 
80
                        _file_chooser.setPathPrefix( _sdcard_prefix );
67
81
 
 
82
                // set up browser button
68
83
                Button path_button = (Button)findViewById( R.id.path );
69
84
                path_button.setOnClickListener( new View.OnClickListener() {
70
85
                        public void onClick( View view ) {
80
95
                SharedPreferences.Editor editor = getSharedPreferences().edit();
81
96
 
82
97
                // path and filename
83
 
                editor.putString(  "path", _path );
 
98
                editor.putString( "path", _path );
84
99
                EditText filename = (EditText)findViewById( R.id.filename );
85
100
                editor.putString( "filename", filename.getText().toString() );
86
101
 
108
123
                        "android-contacts.vcf" ) );
109
124
        }
110
125
 
 
126
        static protected String getSdCardPathPrefix()
 
127
        {
 
128
                // check sdcard status
 
129
                String state = Environment.getExternalStorageState();
 
130
                if( !Environment.MEDIA_MOUNTED.equals( state ) &&
 
131
                        !Environment.MEDIA_MOUNTED_READ_ONLY.equals( state ) )
 
132
                {
 
133
                        // no sdcard mounted
 
134
                        return null;
 
135
                }
 
136
 
 
137
                // get sdcard path
 
138
                String sdcard_path;
 
139
                try {
 
140
                        sdcard_path = Environment.getExternalStorageDirectory()
 
141
                                .getCanonicalPath();
 
142
                        if( sdcard_path.charAt( sdcard_path.length() - 1 ) == '/' )
 
143
                                sdcard_path =
 
144
                                        sdcard_path.substring( 0, sdcard_path.length() - 1 );
 
145
                }
 
146
                catch( IOException e ) {
 
147
                        sdcard_path = null;
 
148
                }
 
149
 
 
150
                return sdcard_path;
 
151
        }
 
152
 
111
153
        protected void updatePathButton()
112
154
        {
113
155
                Button path_button = (Button)findViewById( R.id.path );
114
 
                path_button.setText(
115
 
                        _file_chooser.prettyPrint( "/sdcard" + _path, true ) );
 
156
                if( _sdcard_prefix != null )
 
157
                        path_button.setText(
 
158
                                _file_chooser.prettyPrint( _sdcard_prefix + _path, true ) );
116
159
        }
117
160
 
118
161
        protected void onBrowse()
136
179
                case DIALOG_FILECHOOSER:
137
180
                        ret = _file_chooser.onCreateDialog();
138
181
                        break;
 
182
 
 
183
                case DIALOG_NOSDCARD:
 
184
                        ret = new AlertDialog.Builder( this )
 
185
                        .setIcon( R.drawable.alert_dialog_icon )
 
186
                        .setTitle( R.string.error_title )
 
187
                        .setMessage( R.string.error_nosdcard )
 
188
                        .setPositiveButton( R.string.error_ok,
 
189
                                new DialogInterface.OnClickListener() {
 
190
                                        public void onClick(DialogInterface dialog,
 
191
                                                int whichButton)
 
192
                                        {
 
193
                                                // close the whole app!
 
194
                                                setResult( RESULT_OK );
 
195
                                                finish();
 
196
                                        }
 
197
                                } )
 
198
                        .create();
 
199
                        break;
139
200
                }
140
201
 
141
202
                return ret;