String imageInSD = Environment.getExternalStorageDirectory()+"/DCIM/Soovy/2089.jpg";
Bitmap bitmap = BitmapFactory.decodeFile(imageInSD);
if(bitmap == null){
Log.v("combine image", "null");
}else{
Log.v("combine image", "not null");
}
更新:使用された Environment.getExternalStorageDirectory() 情報をありがとう