伙计们
有没有一种方法可以通过Java代码查找手机中安装的youtube播放器的哪个版本?

谢谢。

最佳答案

是的,有可能。使用类PackageInfo(引用:PackageInfo)

// The version number of this package, as specified by the <manifest> tag's
// versionCode attribute. Added in API level 1
public int versionCode

// The version name of this package, as specified by the <manifest> tag's
// versionName attribute. Added in API level 1
public String versionName

码:
PackageInfo pinfo = null;
pinfo = getPackageManager().getPackageInfo("com.google.android.youtube", 0);
int versionNumber = pinfo.versionCode;
String versionName = pinfo.versionName;

08-04 23:23