并非所有 Android 设备都安装了 Google Play 应用程序。那么,如果我有意在浏览器中打开 Google Play 页面会发生什么?用户还能下载应用吗?
我无法测试它,因为我所有的设备都安装了 Google Play 应用程序作为 Android 操作系统的一部分。
这是有问题的代码:
String url = "http://play.google.com/store/apps/details?id=com.example.my_app";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
用户是否能够安装该应用程序?