当用户点击提醒按摩知道更多按钮打开手机浏览器并在Android应用程序上显示我的网站的URL我所做的。我需要代码。我尝试了许多代码,比如Web视图和其他代码,但没有工作。请帮帮我!
答案 0 :(得分:1)
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://stackoverflow.com/"));
startActivity(browserIntent);
检查this了解更多信息
答案 1 :(得分:0)
我为你编码,不知道这是否是你想要的答案
new AlertDialog.Builder(this)
.setTitle("My homepage")
.setMessage("Wanna go to my 1337 homepage?")
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.my1337site.com"));
startActivity(browserIntent);
}
})
答案 2 :(得分:0)
String url = "http://www.xyz.com"; //your URL
Intent openUrl = new Intent(Intent.ACTION_VIEW);
openUrl.setData(Uri.parse(url));
startActivity(openUrl);
在警告框的onclick上添加此代码
答案 3 :(得分:0)
试试这个
String url = "http://www.example.com";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);