Android - Scheme URL - 链接重定向到app

时间:2016-10-11 22:37:04

标签: javascript php android android-studio url-scheme

我需要在扫描QR码时打开我的Android应用程序。

在QR码中有一个链接,其中包含一个用于打开应用程序的js脚本。

在我的Android Manifest中,我添加了intent但是,当我访问该页面时,浏览器不会加载应用程序。我错过了什么?

机器人:

    <!-- Test for URL scheme -->
    <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="bbb" android:host="index"/>
    </intent-filter>
    <!-- End Test for URL scheme -->

Js(testLink.php)

<script>
   window.location = 'bbb://index';
</script>

1 个答案:

答案 0 :(得分:0)

尝试将window.location设置为intent://index#Intent;scheme=bbb;end