在我的项目中,我尝试在 onReceive 方法中实现相机动作。单击相机图标时,我们可以打印日志。我在广播接收器中尝试过。但我无法得到结果。我在这里附上了我的一段代码。
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals(Intent.ACTION_CAMERA_BUTTON)) {
Log.e("cam0","cam");
//Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
//context.startService(cameraIntent);
// startActivity(cameraIntent, CAMERA_PIC_REQUEST);
}
}
是否可以为此打印日志。我在敲我的头,我仍然找不到结果。在这种情况下寻求帮助。先感谢您。