1
我想使用android中的標準相機應用程序在我的應用程序中拍照。事情是,照片拍完後,我不想馬上回到我的應用程序。相反,我希望向用戶提供一個選項,詢問他/她剛拍攝的照片是否可以。如果不是,則不要回到應用程序,而是重新運行相機活動。圖片拍攝後相機活動中的對話框
我該如何做到這一點?
我想使用android中的標準相機應用程序在我的應用程序中拍照。事情是,照片拍完後,我不想馬上回到我的應用程序。相反,我希望向用戶提供一個選項,詢問他/她剛拍攝的照片是否可以。如果不是,則不要回到應用程序,而是重新運行相機活動。圖片拍攝後相機活動中的對話框
我該如何做到這一點?
嘗試這樣的:
public void TakeFromCamera(View view) {
Intent cameraIntent = new Intent(
android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(cameraIntent, CAMERA_PIC_REQUEST);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
switch(requestCode){
case CAMERA_PIC_REQUEST:
if (requestCode == CAMERA_PIC_REQUEST) {
// Add the code for the dialogBox
}
break;
}
}