我想通过我的应用程序在主布局背景中设置保存在 SD 卡上的图像
我正在创建一个应用程序,我想在主 xml 线性布局中设置不同的背景图像。我在 SD 卡上存储了 5 个图像文件。现在我想选择一张图片并将其设置为我的主 xml 线性布局背景。因此它将替换上一张图像并显示新图像作为背景。
i am creating an application in which i want set different background images in main xml linearlayout.I have stored 5 image files on sd card .now i want to select a pic and set it as my maim xml linearlayout background.so it will replace the previous image and display the new image as background.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先为主xml线性布局分配一个id,例如在下面的例子中它被命名为“container”
然后在.java代码中你可以找到布局对象并设置一个drawable作为它的背景:
问候
Ziteng Chen
First assign an id to the main xml linearlayout, for example in the following case it is named" container"
Then in the .java code you can find the layout object and set a drawable as its background:
Regards
Ziteng Chen