我正在启动设备上安装的默认Youtube应用以播放视频。首先,我想使用PackageManager检查设备上是否存在应用程序。
如果该应用不存在,我想将用户重定向到Google Play以下载该应用。
以下是代码段:
String appName = "com.google.android.youtube";
Boolean existFlg = false;
Context context = getApplicationContext();
PackageManager packageManager = context.getPackageManager();
// get all installed app's info
List<PackageInfo> pinfo = packageManager.getInstalledPackages(PackageManager.GET_ACTIVITIES);
for (int i = 0; i < pinfo.size(); i++) {
String name = pinfo.get(i).packageName;
if (name.equalsIgnoreCase(appName)) {
existFlg = true;
break;
}
}
if (existFlg) {
// start Youtube Native App
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("vnd.youtube:"+video_id));
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);
}
// not installed
else {
// goto the market to download Youtube App
Uri uri = Uri.parse("market://details?id=com.google.android.youtube");
Intent market = new Intent(Intent.ACTION_VIEW, uri);
market.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
try {
context.startActivity(market);
} catch (android.content.ActivityNotFoundException ex) {
// if market app not exist, goto the web of Google Play to download the Facebook App
String googleURL = "https://play.google.com/store/apps/details?id=com.google.android.youtube";
Uri googleplay_webpage = Uri.parse(googleURL);
Intent marketIntent = new Intent(Intent.ACTION_VIEW, googleplay_webpage);
marketIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(marketIntent);
}
}
此代码在 Android 4.0.4 及更高版本上运行良好。但是当我尝试在 Android 2.3.4 上运行它时,无论是否安装了应用程序,它都会将用户重定向到Google Play。
有关如何使其与Android 2.3.4兼容的任何想法吗?
答案 0 :(得分:2)
可能是因为PackageManager.GET_ACTIVITIES
在这里没有多大意义?
你可能想要这样的东西:
try {
PackageInfo pi = pm.getPackageInfo("com.google.android.youtube", 0);
// start Youtube
} catch (NameNotFoundException e) {
// go to Play Store
}
另一种更好的方法是不要强迫用户使用Youtube应用,而只需使用VIEW操作并让他们选择他们想要使用的应用。