How to open an URL in Android’s web browser
Published: December 6, 2011 , Updated: December 6, 2011 , Author: mkyong
Here’s a code snippet to show you how to use “android.content.Intent” to open an specify URL in Android’s web browser.
button.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) { Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.mkyong.com")); startActivity(intent); } });
Note
For full example, please refer to this – Android button example.
For full example, please refer to this – Android button example.
References
Note : You can find more similar articles at - Android Tutorials







