爲了嘗試開始學習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>
我做了,但仍然沒有啓動 – EDECoder
卸載並重新安裝應用程序後,令人驚訝的是它運行。無論如何,它不會追加你建議的前綴。謝謝 – EDECoder