最佳答案
使用ACTION_IMAGE_CAPTURE目的启动“相机活动”:
原文链接:https://www.f2er.com/android/531586.htmlIntent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE );
startActivityForResult( intent,0 );
这里有一个详细的示例:http://labs.makemachine.net/2010/03/simple-android-photo-capture/,我认为它适合捕获图像,将其存储在sd卡中,然后在imageview中显示图像.
请享用!!!