使用基本webview时出错 - Android

时间:2013-03-24 09:20:24

标签: android android-webview

我正在Android上尝试一个非常简单的webview应用程序。虽然程序构建正常,但是有一些我无法解码的运行时错误。布局:

<?xml version="1.0" encoding="utf-8" ?>

   <Webview xmlns:android="http://schemas.android.com/apk/res/android"
       android:id="@+id/helloWebview"
       android:layout_width="fill_parent"
       android:layout_height="fill_parent"
     />  

代码:

/* Program to create sample webview.
 * Steps:
 * 1. Create webview.
 * 2. Show some website in it.
 * 3. Show some transitions as well.
 */

package com.sriram.hellowebview;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.webkit.WebView;

public class helloWebview extends Activity {

    WebView myWebview;
    String url = "http://www.google.com";

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_hello_webview);

        Log.v(this.toString(), "Starting activity.");

        myWebview = (WebView) findViewById(R.id.helloWebview);

        Log.v(this.toString(), "Getting settings.");
        //myWebview.getSettings().setJavaScriptEnabled(true);

        Log.v(this.toString(), "Loading URL now.");
        myWebview.loadUrl(url);
        Log.v(this.toString(), "Loaded URL.");

        //open all links within the same webview.
        //myWebview.setWebViewClient(new WebViewClient());
        //Log.v(this.toString(), "All done here.");
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_hello_webview, menu);
        return true;
    }
}

观察到的错误:

03-24 14:48:27.618: E/AndroidRuntime(388): Uncaught handler: thread main exiting due to uncaught exception
03-24 14:48:27.658: E/AndroidRuntime(388): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.sriram.hellowebview/com.sriram.hellowebview.helloWebview}: android.view.InflateException: Binary XML file line #3: Error inflating class Webview  

我遇到了类似的错误,详细说明了大型项目中的OutOfMemoryExceptions,但由于上面的代码是项目的全部内容,这似乎不太可能是解释。

2 个答案:

答案 0 :(得分:3)

您的布局中存在拼写错误:WebView需要使用CamelCase编写。没有'Webview'这样的观点。因此,您的布局应如下所示:

<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/helloWebview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />

答案 1 :(得分:2)

您收到此错误,因为您没有任何用于webview的父级布局。

将您的xml文件更改为:

<?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"
   />

   <WebView
       android:id="@+id/helloWebview"
       android:layout_width="fill_parent"
       android:layout_height="fill_parent"
     />  

希望它有所帮助。