0

we have a standalone android application(video portal) once the user click on buy now video, we want redirection to another android application(user verification). The question is , is there any way we redirect control from video portal application to user verification portal. We don't want user to install two different applications, realizing him that he is using only one application. Any Suggestions on this will be highly appreciated.

4

1 回答 1

0

尝试使用带有参数的意图,如果它已安装,它将触发另一个应用程序。如果未安装,您仍然可以将其链接到市场进行下载,如下所示:

market://details?id=com.fletech.smartbaby.android

https://play.google.com/store/apps/details?id=com.fletech.smartbaby.android

在此处查看更多详细信息和 java 示例:http: //developer.android.com/distribute/tools/promote/linking.html#android-app

我想您需要将一些参数传递给身份验证应用程序,以及“链接”或 PendingIntent 到您的应用程序中将在成功身份验证后启动的活动。

于 2015-01-12T22:47:10.420 回答