我正在设计一个Android应用程序,我将我的图像存储在我的本地xml文件中,如
imageview.xml:
<?xml version="1.0" encoding="UTF-8"?>
<Source>
<ID>001</ID>
<Name>News</Name>
<image>
<title>News1</title>
<location>file:http:server_ip/Images/news1.png</location>
</image>
<image>
<title>News1</title>
<location>http:server_ip/Images/bnews2.png</location>
</image>
</Source>
现在我想将此xml文件中的图像显示到我的imageview
中 -
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="here i would like to call my xml files image"/>
编辑:
我在loadimage的帮助下显示了这个xml图像。现在我唯一的问题是如何从xml文件中显示图像并显示图像。
答案 0 :(得分:0)
我很奇怪你为什么要在你的'F'驱动器中存储诸如news1.png和news2.png之类的图像文件以及除了android之外如何在apk中打包或捆绑这些文件, 你有两种方法可以做到这一点
解决方案1:
- 请将它存储在您的drawable或assets文件夹中,android如何使用您的apk打包/捆绑此文件。
醇>解决方案2:
- 如果您仍想将文件保存在“f”驱动器中,只需模仿从服务器下载文件并放置到可绘制或资产中 根据您的需要,我的意思是将您的'f'驱动器保留为本地主机, 没有下载或导入到drawable你不能使用该图像 在您的应用内。
醇>