是否可以启动本机安卓相机应用程序来启动默认相机而不是显示意图选择器,然后启动活动以获得结果?
问问题
2634 次
3 回答
3
您可以使用意图启动相机应用程序,例如: Android 相机意图
你可以像这样在你的意图中设置一个特定的类:
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
intent.setClassName("com.android.camera", "com.android.camera.Camera");
这不会显示意图选择器并启动默认的相机应用程序。
于 2012-05-23T11:12:57.387 回答
0
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent, TAKE_PICTURE);
于 2012-06-10T09:04:33.323 回答
0
imageView = (ImageView)findViewById(R.id.imageView1);
Button photoButton = (Button)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) {
Bitmap photo = (Bitmap) data.getExtras().get("data");
imageView.setImageBitmap(photo);
}
}
在清单中
<uses-feature android:name="android.hardware.camera"/>
于 2012-06-10T09:10:41.083 回答