我已使用
禁用了相机 devicePolicyManager.setCameraDisabled(devicePolicyAdmin, true);
但是我希望每当用户访问摄像头时都会收到回调,并且它被设备策略管理器阻止。
是否有任何广播或活动?
答案 0 :(得分:0)
不幸的是,没有回调
您将必须定期检查import javax.swing.*;
import java.awt.*;
public class GUI {
private Container mainPanel;
public static void main(String[] args) {
JFrame frame = new JFrame("Loot and Scoot");
frame.setContentPane(new GUI().mainPanel);
frame.setPreferredSize(new Dimension(1280,700));
frame.pack();
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
}
}
类中的事件,并查看是否将Camera调用到前台