我正在使用应用程序在whatsapp上发送文本,我尝试使用下一个代码,代码是正确的并且在网络上运行良好,但是当我在aessegurosyfianzas
上使用时,它无效。所以我尝试使用插件whatsapp聊天直播但不是。
代码是:
<div style=" width: 170px; margin: 5px; padding: 2px; background-color; #189d0e; border-radius: 15px; color: white; ">
<a href="https://api.whatsapp.com/send?phone=5214771478702&text=Hola ōque tal? este es un texto predeterminado de prueba" target="_blank">
Chatea con nosotros
</a>
</div>
所以put:
mWebView.setWebViewClient(new WebViewClient(){
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if( url.startsWith("http:") || url.startsWith("https:") ) {
return false;
}
// Otherwise allow the OS to handle things like tel, mailto, etc.
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity( intent );
return true;
}
});
但它仍然无法正常工作。