如何在 Android PreferenceScreen 中打开本地 HTML 文件?
我试图通过 Android 中的 PreferenceScreen 打开本地 HTML 文件,但失败了。我正在尝试使用意图来做到这一点。这是我到目前为止所拥有的。
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="Help">
<Preference
android:title="Help"
android:summary="Opens the help page">
<intent android:action="android.intent.action.VIEW"
android:data="file:///android_asset/help.html" />
</Preference>
</PreferenceCategory>
</PreferenceScreen>
Eclipse 说错误是“找不到处理 Intent 的活动”,这很令人困惑,因为如果我将数据设置为 http: //www.google.com 例如,它可以正常工作。有人可以建议我如何打开这个 HTML 文件吗?
Html文件存储在src/assets下
谢谢
I am trying to open a local HTML file through the PreferenceScreen in Android but failing. I am trying to do it using Intents. This is what I have so far.
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="Help">
<Preference
android:title="Help"
android:summary="Opens the help page">
<intent android:action="android.intent.action.VIEW"
android:data="file:///android_asset/help.html" />
</Preference>
</PreferenceCategory>
</PreferenceScreen>
Eclipse says that the error is that "No Activity can be found to handle Intent" which is confusing because if I set the data to http://www.google.com for example it works without any problems. Could someone advise on how I can open this HTML file?
The Html file is stored under src/assets
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的 PreferenceActivity 中:
In your PreferenceActivity: