我可以在Android应用中捕获卸载操作吗?

public class Unistallreceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { // TODO Auto-generated method stub String action = intent.getAction(); if (action == null) Log.e("uninstall ", "Action==null!"); else if ("android.intent.action.BOOT_COMPLETED".equals(action)) { Log.e("uninstall ", "action :"+action); } } 

}

做这样的事,但不能得到通知。参考说:

public static final String ACTION_PACKAGE_REMOVED

从以下版本开始:API Level 1 Broadcast Action:已从设备中删除现有的应用程序包。 数据包含包的名称。 正在安装的软件包不会收到此Intent

需要这个意图来设置卸载密码。

有什么建议??

摆脱“设置卸载密码”的要求。