/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/edam/importcontacts/ConfigureVCF.java

  • Committer: edam
  • Date: 2011-03-19 20:33:09 UTC
  • Revision ID: edam@waxworlds.org-20110319203309-5dzfyqrxwk94jtin
- formatting: removed some double-indents on overrunning lines
- updated TODO and NEWS
- rewrote central logic of parser so it makes more sense, looks nicer and has a small optimisation (getting name and params from line only when necessary)
- optimised unnecessary mutliple converting of lines to US-ASCII
- re-wrote line extraction from vcards so that we can lookahead for v3 folded lines
- added support for v3 folded lines

Show diffs side-by-side

added added

removed removed

60
60
        Dialog _dialog;
61
61
 
62
62
        @Override
63
 
        protected void onCreate( Bundle saved_instance_state )
 
63
        protected void onCreate( Bundle savedInstanceState )
64
64
        {
65
65
                setContentView( R.layout.configure_vcf );
66
 
                super.onCreate( saved_instance_state );
 
66
                super.onCreate( savedInstanceState );
67
67
 
68
68
                setNextActivity( Merge.class );
69
69