Android标准浏览器的意图

时间:2011-03-26 21:47:06

标签: android browser android-intent standards

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

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

1 个答案:

答案 0 :(得分:0)

  

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

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

如果活动在清单中正确公布,您可以设置一个链接来启动您的应用程序的某个活动。 Here is a sample project证明了这一点。关键是清单:

<?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>

例如,第三个<intent-filter>将由this non-existent site的链接触发。

  

在浏览器中选择文字时,我可以听到任何广播意图吗?

不,因为这会侵犯隐私。