1

我正在开发一个 android 应用程序,我想知道是否可以直接在图像视图中加载图像文件?例如,如果您有照片列表,则图像视图应显示每个项目的图像。另外,您将如何处理apk文件。例如,当您使用文件管理器查看 apk 文件时,它们通常在每个 apk 文件的右侧都有应用程序图标。

这是我的代码: item 等于 sdCard 目录中的 File。

(ImageView)findViewById(R.id.fileimage).setImageURI(Uri.fromFile(item));
4

1 回答 1

1

你可以使用这个:

File img = new  File(“PATH/image.jpg”);
if(img.exists()){

    Bitmap myBmp = BitmapFactory.decodeFile(img.getAbsolutePath());
    ImageView fileimage = (ImageView) findViewById(R.id.fileimage);
    fileimage.setImageBitmap(myBmpp);

}
于 2013-08-02T07:40:27.580 回答