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

  • Committer: edam
  • Date: 2009-10-03 16:58:29 UTC
  • Revision ID: edam@waxworlds.org-20091003165829-vxhwdodf3400ugs3
Tags: 0.9
- converted project to use Android 1.5 SDK
- cleaned-up some whitespace/newlines in source

Show diffs side-by-side

added added

removed removed

21
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
22
 */
23
23
 
24
 
package org.waxworlds.edam.importcontacts;
 
24
package org.waxworlds.importcontacts;
25
25
 
26
26
import java.util.regex.Matcher;
27
27
import java.util.regex.Pattern;
38
38
                setContentView( R.layout.intro );
39
39
                super.onCreate( savedInstanceState );
40
40
 
41
 
                setNextActivity( ConfigureVCF.class );
 
41
                setNextState( ImportContacts.STATE_CONFIGURE_VCF );
42
42
 
43
43
                TextView link = (TextView)findViewById( R.id.intro_link );
44
44
                Linkify.addLinks( link, Pattern.compile( "The Import Contacts homepage" ),
45
 
                        "", null, new Linkify.TransformFilter() {
46
 
                                public String transformUrl( Matcher match, String url ) {
47
 
                                        return "http://www.waxworlds.org/edam/software/android/import-contacts";
48
 
                                }
49
 
                        }
50
 
                );
 
45
                                "", null, new Linkify.TransformFilter() {
 
46
                                        public String transformUrl( Matcher match, String url ) {
 
47
                                                return "http://www.waxworlds.org/edam/software/android/import-contacts";
 
48
                                        }
 
49
                                } );
51
50
        }
52
51
 
53
52
}