其他方式触发拍照确认按钮?

时间:2015-07-10 13:28:34

标签: android photo

所以在开发过程中,我放弃了我唯一的Android设备:(。一个nexus 7(第一代),现在1/5的屏幕不再工作。不幸的是,对我来说,我的小测试应用程序使用拍照后我不能按下“确认”按钮(我用音量按钮拍照)。

1 /任何改变我的代码的方式,以便不需要进行“确认”检查,拍摄的照片会自动使用照片吗?

2 /“确认”拍摄照片的其他方式?

3 /将摄像机控件移向另一侧

我用来捕捉图片的代码

public class TestCamera extends Activity {
    private static final int CAMERA_REQUEST = 1888;
    private ImageView imageView;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.camera_layout);

        this.imageView = (ImageView) this.findViewById(R.id.imageView1);
        Button photoButton = (Button) this.findViewById(R.id.button1);

        photoButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent cameraIntent = new Intent(
                        android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
                startActivityForResult(cameraIntent, CAMERA_REQUEST);
            }
        });
    }

    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (requestCode == CAMERA_REQUEST) {
//         if (requestCode == CAMERA_REQUEST && resultCode == RESULT_OK) {
            Bitmap photo = (Bitmap) data.getExtras().get("data");
            imageView.setImageBitmap(photo);
        }
    }
}

任何提示,聪明的建议??

1 个答案:

答案 0 :(得分:0)

尝试使用INTENT_ACTION_STILL_IMAGE_CAMERA代替ACTION_IMAGE_CAPTURE。

http://developer.android.com/reference/android/provider/MediaStore.html#INTENT_ACTION_STILL_IMAGE_CAMERA

我遇到了同样的问题,但我最终使用android.hardware.Camera实现了自己的相机应用程序。