Start android browser form your app


/ Published in: Java
Save to your folder(s)

2 lines of code to start the browser form your Android application.


Copy this code and paste it in your HTML
  1. Intent viewIntent = new Intent("android.intent.action.VIEW",Uri.parse("http://www.klingmobile.com"));
  2. startActivity(viewIntent);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.