来自EditText手机的图像

时间:2012-03-10 16:18:52

标签: android image android-edittext

我正在尝试编写一个应用程序,允许用户阅读带有图片的笔记。 现在我有一个关于如何从手机导入图像文件并将其添加到编辑窗口(EditText)的问题。图像的数量不固定。有人可以帮助我吗?谢谢!

1 个答案:

答案 0 :(得分:0)

首先,您无法在EditText中显示图像。您需要使用ImageView。您可以读取图像文件并将其转换为位图,并将位图对象作为imageview的源。 您可以找到有关ImageView的更多信息

http://developer.android.com/reference/android/widget/ImageView.html

修改

更多地解释一下你想要做什么,所以我可以更好地帮助你。不过这对你有帮助。

String imageFilePath;
ImageView clicked_pic;

imageFilePath = Environment.getExternalStorageDirectory().getAbsolutePath() + "/gps_123.png"; // path to an image which is stored in the sd-card.

 Bitmap imgg = BitmapFactory.decodeFile(imageFilePath);
 clicked_pic.setImageBitmap(imgg); // set image to imageview.

...谢谢