在android 3.x中打开local-html-file-with-android-browser

在android 3.x中打开local-html-file-with-android-browser,第1张

概述与 android 2.x我可以使用该解决方案 browserIntent.setClassName("com.android.browser", "com.android.browser.BrowserActivity") 在帖子中解决: opening local html file with Android Browser 但是使用android 3.2我有这个错误: Unable to f 与 android 2.x我可以使用该解决方案

browserIntent.setClassname("com.androID.browser","com.androID.browser.browserActivity")

在帖子中解决:

opening local html file with Android Browser

但是使用androID 3.2我有这个错误:

Unable to find explicit activity class (com.androID.browser/com.androID.browser.browserActivity); have you declared this activity in your AndroIDManifest.xml?

我认为AndroID 3.x中不存在类com.androID.browser.browserActivity

有解决方案吗

解决方法 不是一个令人满意的解决方案,但在演示应用程序中,我使用以下代码:

String url = "content://com.androID.HTMLfileprovIDer/sdcard/mydir/myfile.HTML";Intent intent = new Intent(Intent.ACTION_VIEW);intent.setDataAndType(Uri.parse(url),"text/HTML");startActivity(intent);

通常至少有两个作品中的一个.

https://github.com/nicolas-raoul/OxygenGuide-Android/blob/master/src/org/github/OxygenGuide/MainActivity.java#L69

总结

以上是内存溢出为你收集整理的在android 3.x中打开local-html-file-with-android-browser全部内容,希望文章能够帮你解决在android 3.x中打开local-html-file-with-android-browser所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1127088.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存