当前位置:网站首页>Android jump to google app market
Android jump to google app market
2022-07-30 14:35:00 【The Internet baby pandas】
public static void gotoGoogleMarket(Context context, String packageName) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("https://play.google.com/store/apps/details?id=" + packageName));
intent.setPackage("com.android.vending");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);
}
边栏推荐
- 还在说软件测试没有中年危机?9年测试工程师惨遭淘汰
- 华为7年经验的软件测试总监,给所有想转行学软件测试的朋友几点建议
- No-code development platform all application settings introductory tutorial
- The main content of terrain analysis (the special effect level of the wandering earth)
- LeetCode二叉树系列——145.二叉树的后序遍历
- [ARC092B] Two Sequences
- Understand Chisel language. 28. Chisel advanced finite state machine (2) - Mealy state machine and comparison with Moore state machine
- Application of time series database in the field of ship risk management
- redis6.0 源码学习(五)ziplist
- PyQt5快速开发与实战 9.1 使用PyInstaller打包项目生成exe文件
猜你喜欢
随机推荐
mongodb打破原则引入SQL,它到底想要干啥?
redis6.0 源码学习(五)ziplist
Allure Advanced - Dynamically Generate Report Content
关于华为应用市场审核App无法启动的问题
新时代背景下智慧城市的建设与5G技术有何关联
(HR面试)最常见的面试问题和技巧性答复
ccs软件的使用(靠谱挣钱的app软件)
Redis6.0 source code learning (5) ziplist
机器学习在竞赛和工业界应用区别
无代码开发平台全部应用设置入门教程
查阅所连接过的WiFi所有信息(含密码)(访问历史所有WiFi连接)
OFDM 十六讲 3- OFDM Waveforms
CF1677E Tokitsukaze and Beautiful Subsegments
手把手教你写让人眼前一亮的软件测试简历,收不到面试邀请算我输
Six-faced ant financial clothing, resisting the bombardment of the interviewer, came to interview for review
LeetCode二叉树系列——102.二叉树的层序遍历
00 testers of seasoning after nearly a year, whether to change careers or to learn the software testing students summarized the following heart advice
六面蚂蚁金服,抗住面试官的狂轰乱炸,前来面试复盘
Baijiahao cancels the function of posting documents on the interface: the weight of the plug-in chain is blocked
深入浅出零钱兑换问题——背包问题的套壳









