/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/org/waxworlds/edam/exportcontacts/ConfigureVCF.java

  • Committer: edam
  • Date: 2010-10-28 16:11:51 UTC
  • Revision ID: edam@waxworlds.org-20101028161151-rvtpjt1efsxmyfe5
- merged changes to file chooser from import contacts
- changed the browse button to show a full path

Show diffs side-by-side

added added

removed removed

46
46
                setContentView( R.layout.configure_vcf );
47
47
                super.onCreate( savedInstanceState );
48
48
 
49
 
                setNextActivity( Doit.class );
 
49
//              setNextActivity( Doit.class );
50
50
 
51
51
                // create file chooser
52
52
                _file_chooser = new FileChooser( this );
53
53
                _file_chooser.setMode( FileChooser.MODE_DIR );
54
 
//              String[] extensions = { "vcf" };
55
 
//              _file_chooser.setExtensions( extensions );
 
54
                String[] extensions = { "vcf" };
 
55
                _file_chooser.setExtensions( extensions );
56
56
                _file_chooser.setDismissListener(
57
57
                        new DialogInterface.OnDismissListener() {
58
58
                                public void onDismiss( DialogInterface dialog )