店面形象和Android的内部存储的音频文件店面、音频文件、形象、Android

由网友(旧岛听风)分享简介:如何存储图像和音频文件在android系统的内部存储how to store image and audio files in android internal storage和如何检索回显示图像的ImageView and how to retrieve back to display image imagev...

如何存储图像和音频文件在android系统的内部存储

how to store image and audio files in android internal storage

和如何检索回显示图像的ImageView

and how to retrieve back to display image imageview

在此先感谢

阿斯旺

推荐答案

您可以写一个文件到您的内部存储。检查此链接

You can write a file to your internal storage. Check this link

的http://developer.android.com/intl/de/guide/topics/data/data-storage.html#filesInternal

检索文件

 ImageView image = new ImageView();
 Bitmap bMap = BitmapFactory.decodeFile("/folder/yourfilename.png");
 image.setImageBitmap(bMap);
阅读全文

相关推荐

最新文章