を提供することができますが、カメラを起動し、そのImageViewの中
ImageView imageView = new ImageView(context);
imageView.setImageBitmap(bitmap);
をイメージビューと表示ビットマップを作成する方法である。このコード
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(cameraIntent, 999);
//this method will be called once user takes the pictur
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
if (requestCode == 999)
{
if(data.getExtras() != null)
{
//here is the image from camera
Bitmap bitmap = (Bitmap) data.getExtras().get("data");
}
}
}
を使用して写真を撮ることができます
オープンフロントカメラ – user386430