是否可以运行广播接收器来检测、暂停安装并在安装应用程序时发出警报。
onRecive
public class Receiver extends BroadcastReciver{
public void onReceive(Context context, Intent intent ){
if(intent.getAction().equals("android.intent.action.PACKAGE_INSTALL")){
//i want to pause the installing activity and prompt an alert box
}
}
}
目的是,当要安装应用程序时,它会询问您是否真的要安装此应用程序。
在做了很多研发之后,我真的很想解决这个问题,如果你能帮我解决这个问题,非常感谢。
根据这篇研究论文,这是可能的。请看第 2 页图 1。