我有一個網站項目,我使用css/html/js創建的,它在一個文件夾中。它有幾個嵌入頁面的視頻,因此整個項目的重量約爲700 Mb。我爲平板電腦創建了它,現在我正在尋找在Android平板電腦上打開它的方式。我試着複製文件夾並使用平板電腦Chrome瀏覽器打開index.html,但它卻顯示了一些文字。我也嘗試使用PhoneGap來構建應用程序,但它不接受大型項目。 那麼真的有辦法實現我所需要的嗎? 把它變成一個應用程序將是首選,但如果有任何方法只是在瀏覽器中打開它,這也會有所幫助。我在哪裏看,我從哪裏開始?如何在android上查看web項目
0
A
回答
1
0
在XML文件中,
<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
類文件
公共類WebViewActivity延伸活動{ 私人web視圖web視圖;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.webview);
webView = (WebView) findViewById(R.id.webView1);
webView.setWebViewClient(new WebClient());
webView.getSettings().setJavaScriptEnabled(true);
String url = "www.google.com"; // Give here hosted project url
webView.loadUrl(url);
}
public class WebClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
@Override
public void onPageFinished(WebView view, String url) {
// This is used for finished on particular url
if (url.contains("http://www.google.com/")) {
Intent intent = new Intent();
intent.putExtra("responseurl", url);
setResult(Activity.RESULT_OK, intent);
finish();
}
}
}
}
相關問題
- 1. 如何在SharePoint 2010上查看項目
- 2. 如何查看我在github上觀看的所有項目?
- 3. Android Web查看
- 4. Android Web查看
- 5. 如何知道在回收站查看項目中查看是否點擊android
- 6. 在瀏覽器上查看項目
- 7. 如何爲Sharepoint列表還原「查看項目」Web部件
- 8. Android ListView項目 - 在列表視圖項目中查看
- 9. android:如何查看我在ListView上選擇的項目(多於一個)
- 10. 如何在android上查看desaturate?
- 11. 如何在android上查看unicode khmer?
- 12. 查看項目在Eclipse - SVN
- 13. 查看項目在Main.StoryBoard
- 14. Xamarin Android搜索Recycler查看項目
- 15. Android回收商查看項目位置
- 16. Android的列表查看項目對齊
- 17. RecyclerView查看項目
- 18. 如何排序查看項目
- 19. 我如何打開eclipse並查看我上次查看的項目視圖?
- 20. 如何查看Android Studio中項目的當前依賴列表?
- 21. Web查看碎片Android
- 22. Android Web查看進度條
- 23. 查看操作 - 查看多個項目
- 24. 滑動列表在Xamarin窗體(Android)中查看目錄項目
- 25. 如何在android上運行ionic項目?
- 26. 如何在Android項目上實現JMS
- 27. 如何看到web.xml是在我的Web項目中讀取的
- 28. 如何查看安全頁面上的不安全項目
- 29. 在Android上查看閃爍
- 30. 列表查看項目(和子項目)
所以我只是創建一個小apk然後解壓縮它,進入並添加apk文件中的這些文件並將其歸檔? –
@NebularDust不,你將不得不創建apk沒有視頻文件。你的apk只會包含html/css/js代碼。 APK不會包含視頻。您必須編寫一個JavaScript文件,該文件將SD卡上存在的媒體文件路徑提供給您的html視頻標籤(假設您正在使用視頻標籤)。 –
好吧,我看到然後我會進入編譯的apk並更改我的項目中的鏈接。然後將其歸檔回apk。 –