如何使用Android浏览器类(用于书签)
我想做一个书签应用程序。
我已经搜索过有关此问题的网站。
但还不够详细。
我该怎么办?
我知道我必须使用浏览器类,但它没有太多数据。
我询问浏览器类的示例源或制作书签的详细提示。
I want to make App for bookmark.
I already have searched site about this question.
but it is not enough and detail.
how can I do?
I knew I have to using Browser class but that don't has many data.
I ask to Browser class's example sources or detail tips for making bookmark.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
请参考
对于上下文参数,您可以传递
MainActivity.this
仅当您MainActivity 扩展了 Activity
然后其他两个参数是不言自明的。在您的 AndroidManifest.xml 中添加以下代码
如果您有任何疑问,请随时评论@user1063231
You can use
Please refer http://developer.android.com/reference/android/provider/Browser.html#saveBookmark(android.content.Context,java.lang.String,java.lang.String)
For Context parameter you can pass
MainActivity.this
only if yourMainActivity extends Activity
then other two parameters are self explanatory.In your AndroidManifest.xml add the following code
If you have any doubts feel free to comment @user1063231