gpt4 book ai didi

google-play - 如何使用 Nativescript 从我的 Android 应用程序直接打开 Google Play 商店

转载 作者:行者123 更新时间:2023-12-02 09:41:16 24 4
gpt4 key购买 nike

我是 Android 和 Native Script 的新手。如何使用 native 脚本在我的 android 应用程序中打开 Google Play 商店。我试过使用 WebView ,它工作正常,但我想使用设备中的 Google Play Store 应用程序打开 Google Play Store。

最佳答案

添加权限申请

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

在 oncreate 方法中添加代码
String url = "https://play.google.com/store/apps";
final Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
startActivity(intent);

关于google-play - 如何使用 Nativescript 从我的 Android 应用程序直接打开 Google Play 商店,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36274186/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com