2015-11-05 104 views
-1

我想製作一個簡單的Android和iPhone應用程序,並使用Phonegap顯示我的網站。如何使用Phonegap將重定向到網站的Android/iPhone應用程序?

以下代碼不起作用。

document.write(document.location.href); 
+1

這似乎很奇怪我。爲什麼不只是製作一個簡單的cordova/phonegap應用程序(它將在iOS和Android上運行),然後讓該應用程序使用[this]打開一個到您網頁的外部鏈接(https://github.com/apache/cordova-plugin -inappbrowser)插件。 –

+0

菲多你能幫我建造嗎? –

+0

編號只是因爲stackoverflow是一個問答平臺。如果您在本地構建科爾多瓦應用程序時遇到困難,請嘗試使用[phonegap](https://build.phonegap.com/)遠程構建它們。 Phonegap也可以插入插件。 [This](http://docs.build.phonegap.com/en_US/configuring_plugins.md.html)將向你展示如何在phonegap上導入插件。 –

回答

0

是否有可能爲兩個平臺創建本地應用程序,其中包括重定向到您網站的完整頁面webview?

的Android

  • activity_main.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:layout_width="match_parent" 
        android:layout_height="match_parent" 
        android:id="@+id/webView" /> 
    
    </LinearLayout> 
    
  • Main.java

    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.activity_main); 
    
        webView = (WebView) findViewById(R.id.webView); 
        webView.loadUrl("YOUR_URL_HERE"); 
    } 
    
+0

謝謝你!)我會嘗試 –

相關問題