我正在使用Xamarin创建一个Android应用程序,我有一个加载页面的webview。
问题是该网页上的目标链接=' _blank'不工作。 当我点击链接时没有任何反应。
有关如何解决这个问题的任何建议吗?
axml页面
<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
Oncreate方法
SetContentView(Resource.Layout.Main);
view = FindViewById<WebView>(Resource.Id.webview);
view.SetWebViewClient(new MyWebViewClient(this));
view.Settings.JavaScriptEnabled = true;
view.Settings.DomStorageEnabled = true;
view.Settings.SetSupportMultipleWindows(true);
view.LoadUrl("http://itsupport.rn.dk");