我尝试在Xamarin中为我的应用添加Vebview,我在其中创建了一个带有webview的.axml
axml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minWidth="25px"
android:minHeight="25px">
<WebView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/LocalWebView" />
但是当我打开MainActivity.cs并尝试添加行:
SetContentView(Resource.Layout.Kaamera);
WebView WV = FindViewById<WebView>(Resource.Id.LocalWebView);
我收到2个错误:
严重级代码描述项目文件行抑制状态 错误CS0246找不到类型或命名空间名称“WebView” (你错过了使用指令或程序集吗? 参考?)[MainActivity.cs的路径] 54活动
严重级代码说明项目文件行抑制统计 错误CS0246找不到类型或命名空间名称“WebView” (你错过了使用指令或程序集引用吗?)[路径 MainActivity.cs]活跃
答案 0 :(得分:1)
如果您想使用Webview,则需要在代码的开头添加以下行。
using Android.Webkit;