-1

我的测试手机版本是 Android api 2.1 。我想知道 webview 是在 api 2.1 中运行的。因此,我试图在下面的代码,但它没有运行。

调色板(当您可以看到 activity_main.xml GraphicalLayout 时)没有 webview 控件。但是,4.0版本有它。所以我输入了 XmlCode,但显示消息“找不到以下类:-webview(修复构建路径,编辑 XML)”

你知道如何在api 2.1中操作webview吗?

ps)我尝试重新启动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;
    }
}
4

2 回答 2

7

布局 XML 区分大小写。您应该使用的正确 XML 如下所示:

<WebView
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />
于 2013-02-17T13:31:06.443 回答
0

文档 ( http://developer.android.com/reference/android/webkit/WebView.html ) 说 WebView 从 API 1 开始就可用。

您可能还有其他问题 - API 从一开始就支持这一点。

于 2013-02-17T13:28:54.327 回答