如何在android上加载sdcard中保存的Html页面?

时间:2010-11-10 05:30:45

标签: android html webview

我在sdcard中保存了一些html页面。所以,我想通过webview显示这些页面。可以帮忙完成这项任务吗?

感谢你, SRINIVAS

3 个答案:

答案 0 :(得分:2)

您需要ContentProvider,请参阅this page了解分步指南

答案 1 :(得分:1)

  1. 将文件读入String webSite(如此http://www.anddev.org/read_a_txt_file_from_sd_card_in_a_real_device-t6619.html

  2. WebView webview =(WebView)findViewById(R.id.my_webview);

  3. webview.loadData(摘要,“text / html”,“utf-8”);

答案 2 :(得分:1)

你可以使用

    webview.loadUrl("file://"+Environment.getExternalStorageDirectory()+"/packagename/files/example.html");