美文网首页
安卓11以上或者鸿蒙系统打开默认浏览器

安卓11以上或者鸿蒙系统打开默认浏览器

作者: 风萧兮西易水涵 | 来源:发表于2024-02-04 17:46 被阅读0次

    第一步在清单文件里加入

      <queries>
         <intent>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="https" />
            </intent>
    </queries>
    

    第二步

     private fun jump2WebBrowser(url: String) {
            try {
                val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url)).apply {
                    addCategory(Intent.CATEGORY_BROWSABLE)
                    flags = Intent.FLAG_ACTIVITY_NEW_TASK
                }
                startActivity(intent)
            } catch (e: Exception) {
                CustomToast.show("请设置默认浏览器")
                e.printStackTrace()
            }
        }
    

    这样就可以了

    相关文章

      网友评论

          本文标题:安卓11以上或者鸿蒙系统打开默认浏览器

          本文链接:https://www.haomeiwen.com/subject/wcvfadtx.html