Intent mhelp = new Intent();
Uri uri = Uri.parse("file:///android_asset/help.html");
mhelp.setData(uri);
mhelp.setAction("android.intent.action.VIEW");
mhelp.setClassName("com.android.browser", "com.android.browser.BrowserActivity");
startActivity(mhelp);
这是我的代码,我将HTML文件放在/assets/help.html
中。但是当我运行该程序时,看到该消息的“找不到请求的文件.help.html”。
我不想使用WEBVIEW小部件。