打开网页onclick

时间:2015-04-12 16:28:32

标签: java android

在Android Studio中工作时,如何在触摸按钮背面创建网页?

我相信通过URI可以实现。

1 个答案:

答案 0 :(得分:0)

试试这个:

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://stackoverflow.com"));
startActivity(browserIntent);