我是一个用于对应用程序进行评级的 Android 库 的开发人员,该库会询问用户是否喜欢某个应用程序,如果他想对应用程序进行评级,则会将其重定向到应用程序商店。
有人知道,小米商店将用户重定向到给定应用程序的启动意图是什么吗?
例如,对于 Google Play 来说:
val intent = Intent(Intent.ACTION_VIEW).apply {
data = Uri.parse(
"https://play.google.com/store/apps/details?id=com.example.android")
setPackage("com.android.vending")
}
好吧,我终于得到了小米开发者支持的答复:
以下链接可用于打开GetApps并进入应用程序页面,前提是用户已经安装了GetApps。 链接:mimarket://details?id=packagename&back=true|false&ref=refstr&startDownload=true 注意:您可以将包名称替换为您的包名称
所以我想我们必须使用这段代码:
val intent = Intent(Intent.ACTION_VIEW)
.apply {
data = Uri.parse("mimarket://details?id=com.example.android&back=true|false&ref=refstr&startDownload=true")
}
val intent = Intent(Intent.ACTION_VIEW)
.apply {
data = Uri.parse("mimarket://details?id=com.example.android&back=true|false&ref=refstr&startDownload=true")
}
一些我不知道是什么语言的代码,但这就是答案