Is possible to launch a intent to Google play store app to show "my applications" section?? I need to watch current apps and updates.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
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