Android:为RelativeLayout设置背景图片?
我在运行时下载了图像。现在我想将其设置为 RelativeLayout
的背景。有可能吗?
I have downloaded an image at runtime. Now I want to set it as a background for RelativeLayout
. Does it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
查看 setBackgroundDrawable ,或者createFromPath在 Drawable 类中。
Check out the setBackgroundDrawable, or maybe createFromPath in the Drawable class.
而是使用:
这有效,因为 R.drawable.newImage 引用一个整数。所以你可以这样做:
Instead use:
This works because
R.drawable.newImage
refers to an integer. So you could do:尝试 Xamarin.Android(跨平台) -
OR
AND
Try this for Xamarin.Android (Cross Platform) -
OR
AND
在onCreate函数中:
图片加载方法:
打开方法:
In the onCreate function:
The image loading method:
The open method: