从共享社交平台打开应用程序

时间:2012-09-09 22:50:18

标签: android android-intent intentfilter

如果有人与Facebook共享http://myappAdurl.com而不是另一个人点击链接,如果该设备上存在应用程序,我的应用应该是开放的, 我在清单中添加了以下行,但是我无法得到结果,没有工作。

<application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <activity
            android:name=".TinyUrlTest"
            android:label="@string/title_activity_tiny_url_test"
            android:launchMode="singleTask" >
            <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:host="www.myappAdurl.com"
                    android:path="/images"
                    android:scheme="http" />
            </intent-filter>
            <intent-filter>
                <action android:name="www.myappAdurl.com" />

                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
            </intent-filter>
        </activity>
    </application>

我也试过下面的项目,但它打开了com.commonsware.android.MY_ACTION等链接 https://github.com/commonsguy/cw-advandroid/tree/master/Introspection/URLHandler

1 个答案:

答案 0 :(得分:0)

好的发现, 如果我给

 android:pathPattern="/*.*"

在数据元素内部,然后它打开所有内容