我有一个与Facebook聊天选项集成的网站。我对我的网站进行了网页浏览,可以看到我的Android应用程序中的聊天按钮,但问题是点击聊天按钮,它没有将我重定向到我的手机中安装的Messenger应用程序,而是将我重定向到一个页面写在上面。
另一方面,当我在我的手机上以镀铬方式打开我的网站时(在移动浏览模式下)聊天功能正常。
这是我的MainActivity.java类:
public class MainActivity extends AppCompatActivity {
private WebView webView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
webView = (WebView)findViewById(R.id.webView);
WebSettings webSettings = webView.getSettings();
webSettings.setJavaScriptEnabled(true);
webView.loadUrl("https://geekyvisuals.github.io/website/");
webView.setWebViewClient(new MyWebViewClient());
}
@Override
public void onBackPressed() {
if(webView.canGoBack())
webView.goBack();
else
super.onBackPressed();
}
private class MyWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (Uri.parse(url).getHost().equals("https://geekyvisuals.github.io/website")) {
// This is my web site, so do not override; let my WebView load the page
return false;
}
// Otherwise, the link is not for a page on my site, so launch another Activity that handles URLs
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);
return true;
}
}
}
我该如何直接从我的Android应用程序打开messenger?
答案 0 :(得分:0)
你试过这个吗?
private class MyBrowser extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (url.startsWith("www.messenger.com") {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);
return true;
}
else {
view.loadUrl(url);
return true;
}
}
}
答案 1 :(得分:0)
对于“意图:”,请使用外部浏览器打开Messenger网址。
详细的解决方案已发布到here。