我的测试手机版是Android api 2.1。 我想知道webview是在api 2.1中运行的。 因此,我试图在代码之下,但它没有运作。
Palette(当你看到activity_main.xml GraphicalLayout时)没有webview控件。但是,4.0版有它。 所以我打字了 在XmlCode中,但显示消息'无法找到以下类: - webview(修复构建路径,编辑XML)'
你知道如何在api 2.1中运行webview吗?
p.s)我尝试重新启动eclipse并清理项目。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world"
tools:context=".MainActivity" />
<webview android:id="@+id/webview" android:layout_width="fill_parent" android:layout_height="fill_parent">
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.webkit.WebView;
public class MainActivity extends Activity {
WebView webview;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true);
webview.loadUrl("http://google.com");
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
答案 0 :(得分:7)
布局XML区分大小写。您应该使用的正确XML是这样的:
<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
答案 1 :(得分:0)
文档(http://developer.android.com/reference/android/webkit/WebView.html)表示自API 1以来WebView已经可用。
您可能还有其他问题 - 从一开始就支持API。