Android - 设置应用程序背景
我正在尝试将应用程序背景设置为用户选择的图像,但遇到了一些麻烦。有人可以给我一个如何做到这一点的例子吗?我可以从我的资源中设置图像,但是当我尝试在手机上使用图像时,我似乎无法使其工作。
I am trying to set my applications background to a user chosen image, but I am having some trouble. Is it possible for someone to give me an example of how to do this? I can set the image ok from my resources, but when I try to use an image on the phone I can't seem to make it work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您已经创建了一个方法来让用户选择图像的路径,请使用以下方法:
哦,不要忘记在 XML 文件中将布局背景颜色设置为透明,否则您将看不到图像。 (这对于填充父窗口的任何内容都有效,例如列表视图)
Assuming you have created a method to let the user choose the path to the image, use this:
Oh Don't forget to set you Layout background color to transparent in the XML file or you won't see the image. (this is valid to anything that fills parent window like a listview, for instance)