当用户从android浏览器导航到我的网站时,检查应用是否安装建议下载它?

时间:2014-08-11 09:56:55

标签: android android-browser android-install-apk

我已经搜索了更多关于通过浏览器链接到应用程序的信息,但我找不到我的解决方案 我使用了这个清单代码:

<activity
        android:name=".MainActivity"
        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:host="example.com" android:pathPrefix="/apk" android:scheme="http" />
            <data android:host="www.example.com" android:pathPrefix="/apk" android:scheme="http" />
        </intent-filter>
    </activity>

但是当我导航到http://example.com/apk时,我看不到任何complete action using对话框。但是当我在http://example.com/apk app中输入google search时,一切正常。

所以我想当用户从Android设备浏览器导航到我的应用程序主页时,如果我的应用程序没有安装在用户设备上,建议将其他用户导航到我的app主页。

另一方面,我想在我的主页上介绍我的其他应用程序,我想要在点击时显示另一个complete action using对话框,选择用我的应用程序打开它。

提前致谢

0 个答案:

没有答案