显示照片android代码

时间:2011-03-10 17:56:01

标签: java android

如何从手机上的内部存储中访问照片 并显示它

1 个答案:

答案 0 :(得分:1)

这是一个基本的例子,假设你有一个名为“myPics”的文件夹,里面有一张名为“clone.jpg”的图片

File imageFile = new File("/sdcard/myPics/clone.png");
if (imageFile.exists()){
    //load clone.jpg into your ImageView.
    Bitmap bitmap = BitmapFactory.decodeFile(imageFile.getAbsolutePath());
    BitmapDrawable drawable = new BitmapDrawable(this.getResources(), bitmap);
    myimageView.setScaleType(ImageView.ScaleType.FIT_CENTER);
    myimageView.setImageDrawable(drawable);
}