Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法让用户启动应用程序信息,如包名称或有关该应用程序的任何信息。
我制作了一项服务,它可以让所有正在运行的进程,然后我只是与我应得的包名称进行比较,但我想要广播意图。
是否有任何广播意图接收器可以恢复用户启动应用程序信息?
这段代码对我有用,希望它对你也有帮助。
IntentFilter addFilter = new IntentFilter(); addFilter.addAction(Intent.ACTION_PACKAGE_ADDED); addFilter.addAction(Intent.ACTION_PACKAGE_INSTALL); addFilter.addDataScheme("package"); registerReceiver(yourReceiverName, addFilter);