我已经创建了 layout.xml。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<WebView
android:id="@+id/mwebView"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
这是在我的活动中。我得到这个 Web 视图无法解决或者不是一个字段并且得到 nullpointerexception。这是我的代码。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mWebview=(WebView)findViewById(R.id.mwebView);
new getContactsTask().execute();
}