PackageManager是个非常好的东西,其他的详细的细节等日后有时间整理
PackageManager的功能:
•安装,卸载应用
•查询permission相关信息
•查询Application相关信息(application,activity,receiver,service,provider及相应属性等)
•查询已安装应用
•增加,删除permission
•清除用户数据、缓存,代码段等
我们可以用PackageManager来显示系统安装的应用程序列表或者系统程序列表
废话先不多说
java code
package com.loulijun.appshow;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import android.app.Activity;
import android.content.Context;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.TextView;
public class AppShowActivity extends Activity {
ListView lv;
MyAdapter adapter;
ArrayList<HashMap<String, Object>> items = new ArrayList<HashMap<String, Object>>();
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
lv = (ListView)findViewById(R.id.lv);
//得到PackageManager对象
PackageManager pm = getPackageManager();
//得到系统安装的所有程序包的PackageInfo对象
//List<ApplicationInfo> packs = pm.getInstalledApplications(0);
List<PackageInfo> packs = pm.getInstalledPackages(0);
for(PackageInfo pi:packs)
{
HashMap<String, Object> map = new HashMap<String, Object>();
//显示用户安装的应用程序,而不显示系统程序
// if((pi.applicationInfo.flags&ApplicationInfo.FLAG_SYSTEM)==0&&
// (pi.applicationInfo.flags&ApplicationInfo.FLAG_UPDATED_SYSTEM_APP)==0)
// {
// //这将会显示所有安装的应用程序,包括系统应用程序
// map.put("icon", pi.applicationInfo.loadIcon(pm));//图标
// map.put("appName", pi.applicationInfo.loadLabel(pm));//应用程序名称
// map.put("packageName", pi.applicationInfo.packageName);//应用程序包名
// //循环读取并存到HashMap中,再增加到ArrayList上,一个HashMap就是一项
// items.add(map);
// }
//这将会显示所有安装的应用程序,包括系统应用程序
map.put("icon", pi.applicationInfo.loadIcon(pm));//图标
map.put("appName", pi.applicationInfo.loadLabel(pm));//应用程序名称
map.put("packageName", pi.applicationInfo.packageName);//应用程序包名
//循环读取并存到HashMap中,再增加到ArrayList上,一个HashMap就是一项
items.add(map);
}
/**
* 参数:Context
* ArrayList(item的集合)
* item的layout
* 包含ArrayList中的HashMap的key的数组
* key所对应的值的相应的控件id
*/
adapter = new MyAdapter(this, items, R.layout.piitem,
new String[]{"icon", "appName", "packageName"},
new int[]{R.id.icon, R.id.appName, R.id.packageName});
lv.setAdapter(adapter);
}
}
class MyAdapter extends SimpleAdapter
{
private int[] appTo;
private String[] appFrom;
private ViewBinder appViewBinder;
private List<? extends Map<String, ?>> appData;
private int appResource;
private LayoutInflater appInflater;
public MyAdapter(Context context, List<? extends Map<String, ?>> data,
int resource, String[] from, int[] to) {
super(context, data, resource, from, to);
appData = data;
appResource = resource;
appFrom = from;
appTo = to;
appInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
public View getView(int position, View convertView, ViewGroup parent)
{
return createViewFromResource(position, convertView, parent, appResource);
}
private View createViewFromResource(int position, View convertView, ViewGroup parent, int resource)
{
View v;
if(convertView == null)
{
v = appInflater.inflate(resource, parent,false);
final int[] to = appTo;
final int count = to.length;
final View[] holder = new View[count];
for(int i = 0; i < count; i++)
{
holder[i] = v.findViewById(to[i]);
}
v.setTag(holder);
}else
{
v = convertView;
}
bindView(position, v);
return v;
}
private void bindView(int position, View view)
{
final Map dataSet = appData.get(position);
if(dataSet == null)
{
return;
}
final ViewBinder binder = appViewBinder;
final View[] holder = (View[])view.getTag();
final String[] from = appFrom;
final int[] to = appTo;
final int count = to.length;
for(int i = 0; i < count; i++)
{
final View v = holder[i];
if(v != null)
{
final Object data = dataSet.get(from[i]);
String text = data == null ? "":data.toString();
if(text == null)
{
text = "";
}
boolean bound = false;
if(binder != null)
{
bound = binder.setViewValue(v, data, text);
}
if(!bound)
{
/**
* 自定义适配器,关在在这里,根据传递过来的控件以及值的数据类型,
* 执行相应的方法,可以根据自己需要自行添加if语句。另外,CheckBox等
* 集成自TextView的控件也会被识别成TextView,这就需要判断值的类型
*/
if(v instanceof TextView)
{
//如果是TextView控件,则调用SimpleAdapter自带的方法,设置文本
setViewText((TextView)v, text);
}else if(v instanceof ImageView)
{
//如果是ImageView控件,调用自己写的方法,设置图片
setViewImage((ImageView)v, (Drawable)data);
}else
{
throw new IllegalStateException(v.getClass().getName() + " is not a " +
"view that can be bounds by this SimpleAdapter");
}
}
}
}
}
public void setViewImage(ImageView v, Drawable value)
{
v.setImageDrawable(value);
}
}
xml code
main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView android:id="@+id/lv" android:layout_width="fill_parent"
android:layout_height="fill_parent">
</ListView>
</LinearLayout>
piitem.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView android:id="@+id/icon" android:layout_width="48dip"
android:layout_height="48dip" />
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="wrap_content">
<TextView android:id="@+id/appName" android:layout_width="fill_parent" android:layout_height="wrap_content"/>
<TextView android:id="@+id/packageName" android:layout_width="fill_parent" android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>
分享到:
相关推荐
2. **获取应用元数据**:使用`getApplicationInfo()`方法,可以获取指定包名的应用的`ApplicationInfo`对象,该对象包含了应用的元数据,如标签、图标、是否是系统应用等。 3. **获取应用标签和图标**:`...
本篇文章将深入探讨如何使用`PackageManager`来获取系统应用程序列表,并提供相关代码示例。 首先,我们需要了解`PackageManager`类。它是Android SDK中的一个接口,位于`android.content.pm`包下。通过`Context....
本篇将详细讲解`PackageManager`中的`ApplicationInfo`、`PackageInfo`、`ResolveInfo`和`ActivityInfo`这四个关键类,并结合具体实例来阐述它们的作用和用法。 `ApplicationInfo`是描述一个应用全局信息的类,包含...
1. 获取 `PackageManager` 对象:在任何Android组件(如Activity)中,我们可以调用 `getPackageManager()` 方法来获取到 `PackageManager` 的实例。 ```java PackageManager pm = getApplicationContext()....
### Android中获取应用程序(包)的信息—PackageManager的使用方法 #### 概述 在Android开发过程中,有时我们需要获取系统中应用程序的信息,例如包名(`packagename`)、标签(`label`)、图标(`icon`)以及占用...
首先,要获取`PackageManager`的实例,我们通常在Activity或Service中使用`getPackageManager()`方法。例如: ```java PackageManager pm = getPackageManager(); ``` `PackageManager` 提供了多种方法来获取应用...
总结来说,获取Android应用的大小涉及对`PackageManager`的使用,通过`PackageInfo`对象获取基本信息,并可能需要结合文件系统的API来计算。需要注意的是,应用的大小不仅仅包含APK本身,还包括其数据文件、缓存和...
使用`getPermissionInfo()`方法,可以获取应用所请求的权限详情。这包括权限的名称、描述、危险级别等。同时,`checkPermission()`方法可以检查某个应用是否已经获得了特定的权限。 4. **卸载应用**: 如果你想...
本篇文章将深入探讨如何使用 `PackageManager` 获取并整理Android设备上的所有安装程序信息。 首先,`PackageManager` 提供了一个名为 `getInstalledPackages(int flags)` 的方法,用于获取设备上所有安装的应用...
要获取设备上安装的所有应用程序列表,你需要使用`PackageManager`类。这个类提供了访问系统中所有应用信息的接口。首先,在你的Activity或Service中获取`PackageManager`实例: ```java PackageManager ...
使用方法 示例一 var pm = new PM . Manager ( ) ; pm . setPath ( './packages' ) ; pm . add ( 'moduleA' , [ 'ModuleA.js' ] ) ; pm . load ( 'moduleA' ) . then ( ( ) => { alert ( moduleNameA ) ; ...
2. **编程方式**:使用`PackageManager`的`getApplicationIcon(packageName)`方法,传入包名即可获取到应用图标。图标会以`Bitmap`形式返回,可以根据需求进行保存或显示。 以上操作需要注意权限问题,对于未安装的...
总结起来,Android开发者可以通过`PackageManager`的`hasSystemFeature()`方法来判断设备是否具备相机功能,并结合权限管理确保应用可以正常使用相机。这种方法有助于提供更加定制化的用户体验,避免在没有相机的...
近日想实现静默安装(不提示用户),网上搜文章大多提到一个方法 PackageManager.install,这是个非公开方法,它的用法是借鉴了内置应用 packageInstaller,跳过Activity提示用户,直接调用核心方法。用Git下载...
下面将详细解释如何使用`PackageManager`来实现这一功能,并探讨相关的知识点。 首先,`PackageManager`是Android SDK中的一个重要类,位于`android.content.pm`包下。它提供了查询、安装、卸载以及管理应用程序的...
你可以通过putExtra()方法添加键值对,然后在接收端使用getExtra()系列方法取出数据。例如: ```java // 发送端 Intent intent = new Intent(); intent.putExtra("key", "value"); startActivity(intent); // 接收...
当我们调用`PackageManager`的相关方法时,通常会返回`PackageInfo`对象。 要获取手机上安装的app信息列表,你需要在你的代码中进行以下步骤: **步骤1:获取PackageManager对象** 在你的Activity或Service中,...
在Android开发中,我们可以使用Android提供的Content Provider和PackageManager服务来实现这一功能。接下来,我们将详细讨论如何在Android中获取手机应用信息。 首先,我们需要了解`PackageManager`类,它是Android...