https://material-shop-test-api.heaodaojia.com/mini/jdb/wx/authorization?mobile=13631629110&source=jdb&is_support_plan=0&js_type=3&path=%2F%23%2FsubPages%2Forder%2Fgenerate-order-online-material
fun Context.openWechatBrowser(url: String?) {
try {
val wechatUrl = "weixin://dl/business/webview?url=${Uri.encode(url)}"
val intent = Intent(Intent.ACTION_VIEW, Uri.parse(wechatUrl))
if (intent.resolveActivity(this.packageManager) != null) {
this.startActivity(intent)
} else {
"请先安装微信".showToast(0)
}
} catch (e: Exception) {
e.printStackTrace()
"打开应用时发生错误".showToast(0)
}
}
演示站挂了,有教程吗