在 Android 中,我可以在布局 xml 中使用资源中的图像吗?
目前正在从可绘制资源加载图像 -
<ImageView
android:id="@+id/stestImg"
android:src="@drawable/testImg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
我可以在此处使用资源中的图像,直接将其加载到布局 XML 中吗?我需要为此做任何编码吗?请帮忙。
Currently am loading image from drawable resource-
<ImageView
android:id="@+id/stestImg"
android:src="@drawable/testImg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
can I use image from assets here, directly to the layout XML? Do I need to do any coding for that! Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以这样实现::
调用方法::
you can do it by this way ::
Call method ::