本文介绍了获取在Android应用程序安装日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
时有办法找出日期当应用程序被安装的Android设备。
Is there are way to find out the "Date when an application was installed" on an Android Device.
搜索广泛,但无法找到相关的答案。
Have searched extensively, but unable to find relevant answer.
无法就日期找到任何应用时通过PackageManager文档/ code安装。
Was unable to find anything regarding Date when Application was Installed through PackageManager documentation/Code.
非常感谢。马希姆。
推荐答案
或这一个( API 9级向上!):
long installed = context
.getPackageManager()
.getPackageInfo("package.name", 0)
.firstInstallTime
;
这篇关于获取在Android应用程序安装日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!