我知道这已经被问到了,但我一直在网上搜索我的问题的正确解决方案。我使用相机意图,然后尝试从相机获取图像并将其设置为图像视图。一切都很好,直到有时间返回并设置图像。我可以拍照,但是当我点击确定它重新启动应用程序没有图像。关于如何让它实际捕获图像而不仅仅是重新启动的任何想法?
public class Submit extends Activity {
private static final int CAMERA_REQUEST = 1888;
private ImageView imageView;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.submit);
this.imageView = (ImageView) this.findViewById(R.id.imageView);
Button photoButton = (Button) this.findViewById(R.id.photoButton);
photoButton.setOnClickListener(new View.OnClickListener() {
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 && resultCode == RESULT_OK) {
Bitmap photo = (Bitmap) data.getExtras().get("data");
imageView.setImageBitmap(photo);
}
}
}
答案 0 :(得分:0)
将您的CAMERA_REQUEST更改为1337.这对我有用。
编辑: 现在我检查了它,它也适用于1888年的代码。
您的代码适用于我。