/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 00:45:02 UTC
  • Revision ID: edam@waxworlds.org-20090128004502-erfklxlwmwhkx4i5
- added scroll view to all layouts
- added intro activity (with disclaimer)
- added action constants so that updates (and changed ids) won't affect saved data
- updated todo

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 );