按钮点击的深层链接,不会带我进入应用程序

问题描述

enter image description here

我已经在我的 android 应用程序中实现了深度链接。我收到一封电子邮件,其中包含一个重置按钮和一个链接。单击链接提供选择我的应用程序的选项。但是点击重置密码按钮,认情况下会将我带到浏览器。点击按钮后,我在浏览器中检查了链接

从按钮点击 https://example.com/password/reset/confirm/ZDAxODUxY2YtYTBjNi00MzQ3LWE0YzctZjIzYWVjNzY3ZjA0/aoqt2u-d5d10b417fdb1db9e622f2fe17816ff2?utm_medium=email&_hsmi=116282858&_hsenc=p2ANqtz-8NrUE8bP7llnuObzZEIkK3X2Gq03cHsvf2c6g78DPoLVn7emLLUJrNdxIE3UvVAzQM74OKME6qDrIdoZU34BvOUswGIQ&utm_content=116282858&utm_source=hs_email

电子邮件中的链接 https://example.com/password/reset/confirm/ZDAxODUxY2YtYTBjNi00MzQ3LWE0YzctZjIzYWVjNzY3ZjA0/aoqt2u-d5d10b417fdb1db9e622f2fe17816ff2

我的清单中有以下内容

<activity
            android:name=".activity.resetpassword.ResetPasswordActivity"
            android:launchMode="singletop"
            android:screenorientation="portrait"
            android:windowSoftInputMode="adjustResize|adjustPan"
            android:theme="@style/AppSplashTheme">
            <intent-filter android:autoVerify="true">
                <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:scheme="https" />
            </intent-filter>
        </activity>

我不知道,为什么按钮点击不起作用。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)