单击链接后,Android会重定向到应用程序

时间:2014-11-23 06:53:18

标签: android

我正在调用一个API,它会向特定号码发送消息。该消息包含一个链接 的 http://tinyurl.com/opcohlb

我想要实现的是,当用户点击链接时,它将在浏览器中打开它,然后它必须自动返回应用程序。

我在我的清单文件中使用以下声明。

          <activity
                android:name=".VerificationActivity"
                android:label="@string/app_name"
                 android:theme="@style/MyTheme" >
                 <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="tinyurl.com"
                     android:path="/"
                     android:scheme="http" />
                    </intent-filter>
          </activity>

但它没有返回申请。请帮助我实现目标。

0 个答案:

没有答案