我仍然對從XML中的SDCard調用圖像感到困惑。我在Android上使用XmlPullParser來解析我的XML。但我未能在SDCard上加載文件。在Android上使用SDCard從XML中定義圖像
這是我的XML:
<image>
<imageproperty>
<id>1</id>
<title>Image1</title>
<thumb_url>file:///mnt/sdcard/image1.png</thumb_url>
</imageproperty>
<imageproperty>
<id>2</id>
<title>Image2</title>
<thumb_url>file:///mnt/sdcard/image1.png</thumb_url>
</imageproperty>
</image>
但是,我使用的URL從網絡,它可以被加載。
<image>
<imageproperty>
<id>1</id>
<title>image1</title>
<thumb_url>http://yazeen.mywapblog.com/files/browser-opera-2.png</thumb_url>
</imageproperty>
<imageproperty>
<id>2</id>
<title>image2</title>
<thumb_url>http://yazeen.mywapblog.com/files/browser-opera-2.png</thumb_url>
</imageproperty>
</image>
有什麼建議嗎?也許,我想念什麼。
謝謝!
首先檢查文件路徑你的項目 – 2014-10-28 06:55:35
謝謝。但是,XML中的文件不是在java:D – Yossi 2014-10-28 07:32:47
只是你認爲有SD卡文件存儲在SD卡中,所以你可以創建文件路徑和檢查文件是否存在 – 2014-10-28 07:35:19