gpt4 book ai didi

Android:使用 ImageView 显示 sdcard 中的 .jpg 图像

转载 作者:行者123 更新时间:2023-12-02 16:52:00 26 4
gpt4 key购买 nike

我正在尝试将 SD 卡中的 .jpg 显示到布局中的 ImageView 中。我没有收到任何错误,但没有显示任何内容。我将不胜感激任何帮助。谢谢

编辑:

        layout1 = (LinearLayout) findViewById(R.id.layout1Activity);

String imgFile = Environment.getExternalStorageDirectory() + "/Apple.jpg";


Bitmap myBitmap = BitmapFactory.decodeFile(imgFile);


ImageView myImage = new ImageView(this);
myImage.setImageBitmap(myBitmap);
layout1.addView(myImage);

最佳答案

不要直接访问SD卡,尝试通过Environment访问它。像这样:

String imageDir = Environment.getExternalStorageDirectory()+"/apple.jpg";

然后你可以调用BitmapFactory:

Bitmap myBitmap = BitmapFactory.decodeFile(imageDir);

关于Android:使用 ImageView 显示 sdcard 中的 .jpg 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11004744/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com