来自标准浏览器的 Android 意图
是否可以将文本从标准浏览器传输到我自己的应用程序?在浏览器中选择文本时,我是否可以收听任何广播意图?
我唯一知道的是,共享页面时会触发一个意图,但这不是我想要的。
Is it possible to transmit text from the standard browser to my own app ? Are there maybe any broadcast intents that i can listen to when selecting text in the browser?
the only thing i know is, that there's an intent triggered when sharing a page, but that's not what i'm looking for.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道“传输文本”是什么意思。
您可以设置一个链接来启动您的应用程序的活动之一(如果该活动在清单中正确宣传自己)。 这里有一个示例项目演示了这一点。关键是清单:
例如,第三个
将由指向 这个不存在的网站。不可以,因为这会侵犯隐私。
I have no idea what "transmit text" means.
You can set up a link that will launch one of your application's activities, if the activity advertises itself properly in the manifest. Here is a sample project that demonstrates this. The key is the manifest:
For example, the third
<intent-filter>
will be triggered by a link to this non-existent site.No, because that would be a privacy violation.