0
我嘗試從相機發送圖像到我的活動。我叫startActivityForResult從適配器這樣的:startActivityForResult返回數據null
photo.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dialog.dismiss();
mActivity.dispatchTakePictureIntent(part.getId());
}
});
這裏有一個活動是方法:
public void dispatchTakePictureIntent(String id) {
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
// Ensure that there's a camera activity to handle the intent
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
// Create the File where the photo should go
File photoFile = null;
try {
photoFile = createImageFile();
} catch (IOException ex) {
// Error occurred while creating the File
}
// Continue only if the File was successfully created
if (photoFile != null) {
Uri photoURI = FileProvider.getUriForFile(this,
"com.example.eltegps011.eltegps.fileprovider",
photoFile);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
takePictureIntent.putExtra("Id",id);
startActivityForResult(takePictureIntent, CAM_REQUEST);
}
}
}
,這是我的onActivityResult();
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == 2) {
part = (Part) data.getSerializableExtra("Part");
Log.e(TAG, "onActivityResult: ");
}if(requestCode == 1313) {
Bitmap thumbnail = (Bitmap)data.getExtras().get("data");
String id = data.getStringExtra("Id");
Log.e(TAG, "onActivityResult: " + id);
}
然而,位圖的縮略圖=(位圖)data.getExtras()。獲得( 「數據」)爲空並且resultCode爲始終是-1。它看起來像意圖不去活動。任何想法爲什麼?
後續[此](http://stackoverflow.com/a/13977619/5296734)它可幫助您找到解決方案。 –
'//創建文件時發生錯誤,並且您仍然繼續,就好像什麼都沒有發生。你應該顯示吐司這樣說,然後返回。 – greenapps
'photoFile = createImageFile()'。除了檢查目錄是否可寫以外,不需要創建該文件。你可以直接刪除它。將創建留給相機應用程序。 – greenapps