您的位置:首页 > 其它

获取当前手机中安装软件列表

2010-09-11 00:09 531 查看
代码

final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
final List<ResolveInfo> pkgAppsList = this.getPackageManager().queryIntentActivities( mainIntent, 0);
for(int i  = 0; i < pkgAppsList.size(); i++){
ResolveInfo info = pkgAppsList.get(i);
Drawable drawable = info.loadIcon(getPackageManager());
ImageView image = new ImageView(this);
image.setBackgroundDrawable(drawable);
image.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
layout.addView(image);
Log.v("dfadf", "dfasdf");
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: