我的Android应用程序中有一个webview
我已加载网址:https://imsnsit.org/imsnsit/notifications.php
有各种通知的链接。单击它们时,我的WebView无效。
它正致力于其他一切 - Chrome(Android),Chrome(桌面)。链接很好。有一点我注意到通知有PHP文件的href。只是导航到该链接不起作用。我得到无效的操作。此外,链接不是静态的,每次刷新页面时它们都会更改(只有plum_url.php的参数)。
我已经在使用这些功能了。什么都没有帮助
webSettings.setJavaScriptEnabled(true); webSettings.setJavaScriptCanOpenWindowsAutomatically(true); webSettings.setDomStorageEnabled(true);
答案 0 :(得分:5)
我检查了您的链接,所有链接都打开了一个pdf文件,这在android web视图中是不受支持的。你可以在google docs中打开这样的链接,也可以在你的设备中打开一些应用程序。 实现shouldOverrideUrlLoading像这样的东西。
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if ( urlIsPDF(url)){
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(url), "application/pdf");
try{
view.getContext().startActivity(intent);
} catch (ActivityNotFoundException e) {
//user does not have a pdf viewer installed
}
} else {
webview.loadUrl(url);
}
return true;
}
答案 1 :(得分:3)
你可以像这样在webview中打开新窗口
WebView webviewContact=(WebView)findViewById(R.id.webviewcontact);
webviewContact.loadUrl("https://imsnsit.org/imsnsit/notifications.php");
webviewContact.clearCache(true);
webviewContact.clearHistory();
//webviewContact.getSettings().setDomStorageEnabled(true);
//webviewContact.getSettings().setSupportMultipleWindows(true);
webviewContact.getSettings().setJavaScriptEnabled(true); webviewContact.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
webviewContact.setWebViewClient(new WebViewClient(){
/*For open new window in webview*/
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) { Toast.makeText(getApplicationContext(),url,Toast.LENGTH_SHORT).show();
view.loadUrl(url);
return false;
}
});
答案 2 :(得分:2)
https://www.mkyong.com/android/android-webview-example/
创建两个Android布局文件 - “res / layout / main.xml”和“res / layout / webview.xml”。
文件:res / layout / main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/buttonUrl"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Go to http://www.google.com" />
</LinearLayout>
文件:res / layout / main.xml - WebView示例
<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
两个活动类,一个显示按钮的活动,另一个活动显示带有预定义URL的WebView。
文件:MainActivity.java
package com.mkyong.android;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class MainActivity extends Activity {
private Button button;
public void onCreate(Bundle savedInstanceState) {
final Context context = this;
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
button = (Button) findViewById(R.id.buttonUrl);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Intent intent = new Intent(context, WebViewActivity.class);
startActivity(intent);
}
});
}
}
文件:WebViewActivity.java
package com.mkyong.android;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class WebViewActivity extends Activity {
private WebView webView;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.webview);
webView = (WebView) findViewById(R.id.webView1);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("http://www.google.com");
}
}
WebView需要INTERNET权限,请将以下内容添加到AndroidManifest.xml中。
<uses-permission android:name="android.permission.INTERNET" />
文件:AndroidManifest.xml - 查看完整示例。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mkyong.android"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".WebViewActivity"
android:theme="@android:style/Theme.NoTitleBar" />
<activity
android:label="@string/app_name"
android:name=".MainActivity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
它会帮助你。
答案 3 :(得分:1)
我建议你开始更快更好地使用自定义标签。具体实施时间为https://developer.chrome.com/multidevice/android/customtabs
// Use a CustomTabsIntent.Builder to configure CustomTabsIntent.
// Once ready, call CustomTabsIntent.Builder.build() to create a CustomTabsIntent
// and launch the desired Url with CustomTabsIntent.launchUrl()
String url = ¨https://paul.kinlan.me/¨;
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(this, Uri.parse(url));
如果您计划不从Web视图重定向到应用程序,则自定义选项卡将是一个很好的解决方案。 webview的问题非常特定于您的实现,因此无法在此处提出解决方案。请粘贴您打开Web视图的方式以及您尝试打开的php内容或链接的实现。
答案 4 :(得分:-1)
您正尝试在Android WebView中打开 target =“_ blank”链接,请尝试以下代码。
首先添加:
webView.setWebChromeClient(webChromeClient);
webView.getSettings().setSupportMultipleWindows(true);
WebChromeClient webChromeClient = new WebChromeClient() {
@Override
public boolean onCreateWindow(WebView view, boolean isDialog,
boolean isUserGesture, Message resultMsg) {
WebView.HitTestResult result = view.getHitTestResult();
String data = result.getExtra();
Context context = view.getContext();
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(data));
context.startActivity(browserIntent);
return false;
}
};
使用此功能,您可以在默认浏览器中打开该链接。