2015-12-22 75 views
-2

我是android studio的新手。我有一個網站,我想爲它創建一個Android應用程序。Android Studio - 打開url

我的問題很簡單,只是爲了幫助我開始,我想要一個代碼,當用戶打開我的應用程序時,在應用程序(而不是瀏覽器)中打開我的網站網址「www.mywebsite.com」。

有人可以提供我的代碼?

非常感謝你!

+1

谷歌約'webview',你會發現你所需要的東西.. – Lal

+0

謝謝朋友! @Lal –

回答

1

在你的XML:

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

添加下面的代碼在你的活動:

webView = (WebView) findViewById(R.id.webView); 
webView.getSettings().setJavaScriptEnabled(true); 
webView.loadUrl("http://www.mywebsite.com"); 
+0

哦,非常感謝你!我現在就試試吧!謝謝 –