• QQ
  • nahooten@sina.com
  • 常州市九洲新世界花苑15-2

Android

android 点击按钮打开浏览器网页

原创内容,转载请注明原文网址:http://homeqin.cn/a/wenzhangboke/jishutiandi/Android/2019/0530/519.html

android 点击按钮打开浏览器网页


public void onClick(View view) {
    Intent intent = new Intent();
    intent.setData(Uri.parse(URL));//Url 就是你要打开的网址
    intent.setAction(Intent.ACTION_VIEW);
    this.startActivity(intent); //启动浏览器
}
 

上篇:上一篇:SimpleDateFormat的少许常用用法
下篇:下一篇:Java date format 时间格式化