/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/ImportVCF.java

  • Committer: edam
  • Date: 2009-01-28 19:55:17 UTC
  • Revision ID: edam@waxworlds.org-20090128195517-z1rmmys8tc8zvgqe
- made behaviour of next button overridable
- added abort button to merge prompt
- moved begin and close buttons to the next button, iverriding its behaviour
- added abort button to import and wired it up
- bugfix: tmp-progress bar didn't fill up when progress max was changed

Show diffs side-by-side

added added

removed removed

27
27
import android.os.Bundle;
28
28
import android.widget.EditText;
29
29
 
30
 
public class ConfigureVCF extends WizardActivity
 
30
public class ImportVCF extends WizardActivity
31
31
{
32
32
        @Override
33
33
        protected void onCreate( Bundle savedInstanceState )
34
34
        {
35
 
                setContentView( R.layout.configure_vcf );
 
35
                setContentView( R.layout.import_vcf );
36
36
                super.onCreate( savedInstanceState );
37
37
 
38
38
                setNextState( ImportContacts.STATE_MERGE );