我想在带有webview的Android应用程序中使用主机example.com
或example.de
在浏览器中打开链接。
我创造了这个意图:
<intent-filter>
<data android:scheme="https" android:host="example.com" />
<data android:scheme="https" android:host="example.de" />
<data android:scheme="http" android:host="example.com" />
<data android:scheme="http" android:host="example.de" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
默认情况下,WebView加载网址example.com
,这是我的onCreate:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
final ProgressDialog pd = ProgressDialog.show(this, "", "Loading...", true);
mWebView = (WebView) findViewById(R.id.activity_main_webview);
// Enable Javascript
WebSettings webSettings = mWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
// Stop local links and redirects from opening in browser instead of WebView
mWebView.setWebViewClient(new MyAppWebViewClient());
mWebView.setWebViewClient(new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
pd.show();
view.loadUrl(url);
return true;
}
@Override
public void onPageFinished(WebView view, String url) {
if (pd.isShowing() && pd != null) {
pd.dismiss();
}
}
});
mWebView.loadUrl(url);
}
这是我的shouldOverrideUrlLoading():
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if(Uri.parse(url).getHost().endsWith("example.com") || Uri.parse(url).getHost().endsWith("example.de") ) {
return false;
}
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
view.getContext().startActivity(intent);
return true;
}
现在我被卡住了。如果您在网络浏览器中点击网址example.com/otherurl.php
,该应用就会打开,但会加载默认网址example.com
。如何打开应用并加载example.com/otherurl.php
而不是example.com
?
我已经阅读了here,我需要这段代码来获取网址:
Uri data = getIntent().getData();
String extUrl = data.toString();
但是我应该在哪里实现此代码? 感谢
答案 0 :(得分:2)
extUrl将包含要打开的网址。所以你应该做一些你调用loadUrl()的东西:
Uri data = getIntent().getData();
if (data != null) {
mWebView.loadUrl(data.toString());
} else {
mWebView.loadUrl(url);
}
所以你在这里说的是,如果浏览器向你发送了网址,那么数据不会为空,因此请使用该地址启动webview。否则,如果数据不包含地址且为null,则使用您的默认地址(url变量)启动。