public class ShowPhotoActivity extends Activity { @Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_show_photo);
ImageView imgphoto = (ImageView) findViewById(R.id.imgviewphoto);
Bundle bundle = getIntent().getExtras();
String fileName = bundle.getString("fileName");
String s = fileName.replace(" ", "");
Log.i("test", "预览地址" + s);
// BitmapFactory.Options options = new BitmapFactory.Options();
// options.inSampleSize = 2;
Bitmap bm = BitmapFactory.decodeFile(s);
imgphoto.setImageBitmap(bm);

}}android手机图片imageview