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所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)