2012-03-10 62 views
0

我正在嘗試編寫一個應用程序,允許用戶閱讀帶有圖片的筆記。 現在我有一個關於如何從手機中導入圖像文件並將其添加到編輯窗口(EditText)的問題。圖像的數量不固定。有人可以幫助我嗎?謝謝!來自EditText手機的圖像

回答

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. 

謝謝...

+0

你好,謝謝你的回覆。我現在想要做的是使用Uri getPath()來檢索路徑,但是,返回的字符串不是像/ SDCARD/....那樣的精確路徑,而是以/ external開頭,我需要使用這個字符串顯示圖像,我可以使用哪種方法?謝謝! – Rico 2012-03-13 16:37:52