2013-10-26 115 views
0

使用我的webview代碼獲取錯誤。想要創建一個適用於所有android操作系統的webview。我在正確的道路上嗎?所有android操作系統上的webview?

webview1似乎給我帶來麻煩。不確定原因。任何指針將不勝感激。提前致謝。

main.java

package com.webapp.Area; 

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

public class MainActivity extends Activity { 

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 


    String url = "http://www.area.com;"; 
    WebView view = (WebView) this.findViewById(R.id.webview1); 

    view.getSettings().setJavaScriptEnabled(true); 
    view.loadUrl(url); 
} 

@Override 
public boolean onCreateOptionsMenu(Menu menu) { 
    // Inflate the menu; this adds items to the action bar if it is present. 
    getMenuInflater().inflate(R.menu.main, menu); 
    return true; 
} 

    } 

activity.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
tools:context=".MainActivity" > 

<WebView 
    android:id="@+id/webView1" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_alignParentLeft="true" /> 

</RelativeLayout> 

This is what im staring at. :/

+0

你可以PLZ發佈你的logcat錯誤日誌與webview相關? –

+0

它不會讓我甚至運行它,因爲webview發出錯誤。這是說它沒有解決或不是一個領域。還有什麼我可以發佈,以幫助獲得更好的理解? – user2923771

+0

也許它與你的錯誤沒有關係,但你的url變量中有一個額外的分號。 – yilmazburk

回答

0

:)只需要改變以下線。

WebView view = (WebView) this.findViewById(R.id.webview1); 

to 

WebView view = (WebView) this.findViewById(R.id.webView1); // "V" should be in capital 
+0

仍然收到同樣的錯誤,非常感謝。還有什麼你能想到的? 發佈了我正在查看的圖像。 – user2923771

相關問題