来自标准浏览器的 Android 意图

发布于 2024-10-27 02:18:05 字数 96 浏览 2 评论 0原文

是否可以将文本从标准浏览器传输到我自己的应用程序?在浏览器中选择文本时,我是否可以收听任何广播意图?

我唯一知道的是,共享页面时会触发一个意图,但这不是我想要的。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

闻呓 2024-11-03 02:18:05

是否可以将文本从标准浏览器传输到我自己的应用程序?

我不知道“传输文本”是什么意思。

您可以设置一个链接来启动您的应用程序的活动之一(如果该活动在清单中正确宣传自己)。 这里有一个示例项目演示了这一点。关键是清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.commonsware.android.urlhandler" android:versionCode="1" android:versionName="1.0">
    <supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="false"/>
        <application android:label="@string/app_name" android:icon="@drawable/cw">
                <activity android:name="URLHandler" android:label="@string/app_name">
                        <intent-filter>
                                <action android:name="android.intent.action.MAIN"/>
                                <category android:name="android.intent.category.LAUNCHER"/>
                        </intent-filter>
                        <intent-filter>
                                <action android:name="android.intent.action.VIEW"/>
                                <category android:name="android.intent.category.DEFAULT"/>
                                <category android:name="android.intent.category.BROWSABLE"/>
                                <data android:mimeType="application/pdf"/>
                        </intent-filter>
                         <intent-filter>
                                <action android:name="android.intent.action.VIEW"/>
                                <category android:name="android.intent.category.DEFAULT"/>
                                <category android:name="android.intent.category.BROWSABLE"/>
                                <data android:scheme="http" android:host="www.this-so-does-not-exist.com"/>
                        </intent-filter>
                        <intent-filter>
                                <action android:name="com.commonsware.android.MY_ACTION"/>
                                <category android:name="android.intent.category.DEFAULT"/>
                                <category android:name="android.intent.category.BROWSABLE"/>
                        </intent-filter>
             </activity>
        </application>
</manifest>

例如,第三个 将由指向 这个不存在的网站

在浏览器中选择文本时,我是否可以收听任何广播意图?

不可以,因为这会侵犯隐私。

Is it possible to transmit text from the standard browser to my own app ?

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:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.commonsware.android.urlhandler" android:versionCode="1" android:versionName="1.0">
    <supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="false"/>
        <application android:label="@string/app_name" android:icon="@drawable/cw">
                <activity android:name="URLHandler" android:label="@string/app_name">
                        <intent-filter>
                                <action android:name="android.intent.action.MAIN"/>
                                <category android:name="android.intent.category.LAUNCHER"/>
                        </intent-filter>
                        <intent-filter>
                                <action android:name="android.intent.action.VIEW"/>
                                <category android:name="android.intent.category.DEFAULT"/>
                                <category android:name="android.intent.category.BROWSABLE"/>
                                <data android:mimeType="application/pdf"/>
                        </intent-filter>
                         <intent-filter>
                                <action android:name="android.intent.action.VIEW"/>
                                <category android:name="android.intent.category.DEFAULT"/>
                                <category android:name="android.intent.category.BROWSABLE"/>
                                <data android:scheme="http" android:host="www.this-so-does-not-exist.com"/>
                        </intent-filter>
                        <intent-filter>
                                <action android:name="com.commonsware.android.MY_ACTION"/>
                                <category android:name="android.intent.category.DEFAULT"/>
                                <category android:name="android.intent.category.BROWSABLE"/>
                        </intent-filter>
             </activity>
        </application>
</manifest>

For example, the third <intent-filter> will be triggered by a link to this non-existent site.

Are there maybe any broadcast intents that i can listen to when selecting text in the browser?

No, because that would be a privacy violation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文