Android意图谷歌播放应用程序在“我的应用程序”部分 [英] Android intent to google play app at "my applications" section

查看:242
本文介绍了Android意图谷歌播放应用程序在“我的应用程序”部分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有可能启动Google Play商店应用来展示我的应用部分?我需要观看当前的应用程序和更新。

解决方案

经过一些痛苦的复古工程......

  Intent intent = new Intent(com.google.android.finsky.VIEW_MY_DOWNLOADS); 
intent.setClassName(com.android.vending,com.google.android.finsky.activities.MainActivity);
startActivity(intent);

编辑:

现在可以使用(Version:5.2 .13),但 Google 可能会在未来的版本中更改此行为

Is possible to launch a intent to Google play store app to show "my applications" section?? I need to watch current apps and updates.

解决方案

After some painful retro-engineering...

Intent intent = new Intent("com.google.android.finsky.VIEW_MY_DOWNLOADS");
intent.setClassName("com.android.vending", "com.google.android.finsky.activities.MainActivity");
startActivity(intent);

Edit:
That works for now (Version : 5.2.13) but Google may change this behavior in a future release

这篇关于Android意图谷歌播放应用程序在“我的应用程序”部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆