从 XML 访问 Android 资源
我的 Android 应用程序中有很多图像,并试图将它们组织在 asset 目录下的文件夹中,而不是将它们全部放在可绘制目录中。
我的问题是如何通过 XML 访问资产目录。例如:
<ImageView android:id="@+id/image_team_logo"
android:src="/assets/teamlogos/ARI"
android:layout_height="25dp"
android:layout_marginLeft="5dp"
android:layout_marginTop="10dp"
android:layout_width="296dp" android:scaleType="matrix"/>
不起作用。我可以在 src 字符串中放入一些东西来使其工作吗?或者只能使用代码中的 AssetManager 访问资产。
I have lots of images in my Android app and was trying to get them organized in folders under the assets directory as opposed to having them all site in the drawable directory.
My question is how can I access the assets directory through XML. For instance:
<ImageView android:id="@+id/image_team_logo"
android:src="/assets/teamlogos/ARI"
android:layout_height="25dp"
android:layout_marginLeft="5dp"
android:layout_marginTop="10dp"
android:layout_width="296dp" android:scaleType="matrix"/>
Does not work. Is there something I can put in the src string to make this work? Or are assets only accessible using the AssetManager in code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不将图像放在“drawable”-Recourse 文件夹中?那就是他们所属的地方。然后可以使用如下方式在 XML 中访问这些图片:
位于“assets”文件夹中的文件可通过 AssetManager,它返回所需文件上的 InputStream。我不知道有什么方法可以通过 XML 访问它们。
Why don't you put your Images in the "drawable"-Recourse folder? That's where they belong. Those pictures can then be accessed in XML using something like this:
Files located in the "assets"-Folder are accessed with the AssetManager, which returns an InputStream on the desired File. I don't know any way of accessing them through XML.