如何使用android中的复选框动态更改布局的背景颜色?
当选中布局内的复选框时,布局的背景应为白色,如果未选中复选框,则布局应为黑色。这在 Android 中可能吗?
When check box inside a layout is checked the backround of layout should be white and if check box is unchecked layout should be black.is this possible in android??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你尝试 wid `
layout = finViewById(R.Layout.LinearLayout);
layout.setBackgroundColor(//color)
})
语法上不正确..`
U try wid `
layout = finViewById(R.Layout.LinearLayout);
layout.setBackgroundColor(//color)
})
not syntactically right..`
一些可以帮助您入门的示例代码:
Some example code that should get you started: