2014-04-17 94 views
0

爲了嘗試開始學習Web應用程序的工作方式,我編寫了一個簡單的Web應用程序,該應用程序在應用程序啓動時啓動www.yahoo.com。但問題是,儘管設備已連接到互聯網,並且我在清單文件中添加了互聯網許可,但在運行應用程序時,網站不會加載或啓動。請幫忙找錯誤或缺什麼基於webview的應用程序不會啓動網站

JavaCode:

public class WebAppTest00 extends ActionBarActivity { 

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

    webview00 = (WebView) findViewById(R.id.webview00); 
    webview00.getSettings().setJavaScriptEnabled(true); 
    webview00.loadUrl("http://www.yahoo.com"); 

    /*if (savedInstanceState == null) { 
     getSupportFragmentManager().beginTransaction() 
       .add(R.id.container, new PlaceholderFragment()).commit(); 
    }*/ 
} 

XMLCode:

<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" 
android:paddingBottom="@dimen/activity_vertical_margin" 
android:paddingLeft="@dimen/activity_horizontal_margin" 
android:paddingRight="@dimen/activity_horizontal_margin" 
android:paddingTop="@dimen/activity_vertical_margin" 
tools:context="com.example.webapptest00.WebAppTest00$PlaceholderFragment" > 

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

回答

0

添加http://你的網址

應該http://www.yahoo.com

+0

我做了,但仍然沒有啓動 – EDECoder

+0

卸載並重新安裝應用程序後,令人驚訝的是它運行。無論如何,它不會追加你建議的前綴。謝謝 – EDECoder

0

請將這些權限添加到清單文件中,並且不要忘記prefi x帶有「http://」的網址;

<uses-permission android:name="android.permission.INTERNET" /> 
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 
相關問題