如何直接链接到另一个应用打开它(实际应用而不是市场或appstore参考)? Android和iOS的格式是什么?
答案 0 :(得分:0)
在Android上,只需创建一个Intent
Intent intent = new Intent(APP_PACKAGE);
startActivity(intent);
答案 1 :(得分:0)
好的,那么你可能想看看Open another application from your own (intent) 你可能想在问之前进行搜索:D大多数时候你可以更快地找到答案:)
答案 2 :(得分:0)
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:yourAppURL];
例如iPhone中的邮件应用程序:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://info@iphonedevelopertips.com"]];
链接到教程:Launching Your Own Application via a Custom URL Scheme
答案 3 :(得分:0)
不确定您在iOS方面会如何处理,但对于Android部分,请参阅此链接:Open another application from your own (intent)
OP有一个类似的问题,解决方案对他有用。看看吧。