我正在使用以下代码打开相机活动
public void callTakeVideo(){
Intent intent = new Intent(android.provider.MediaStore.ACTION_VIDEO_CAPTURE);
intent.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, uriVideo);
try {
startActivityForResult(intent, REQUEST_VIDEO_CAPTURED);
} catch (ActivityNotFoundException e) {
// TODO: handle exception
e.printStackTrace();
}
}
这将打开 android 相机,我可以第一次毫无问题地捕获视频并保存它。但是当我再次打开相机时,相机视图中的按钮不起作用。
**这个问题只存在于galaxy s。如何解决?