实现 android:button="@drawable/checkbox"以编程方式
我正在尝试创建自定义复选框按钮图像。经过一番研究,我发现了这个代码示例:
<CheckBox android:id="@+id/chkFav" android:layout_width="wrap_content"
android:layout_marginRight="0dp" android:button="@drawable/checkbox"
android:layout_height="wrap_content" android:clickable="true"/>
我的查询是如何在代码中实际实现 android:button 。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
setButtonDrawable(Drawable d) 是要走的路。确保它是状态列表可绘制的以响应用户交互。
分步说明
**注释——实现的方法有很多种。这只是一种简单的方法。
setButtonDrawable(Drawable d) is the way to go for. Make sure it is state-list drawable to respond to user interaction.
Step By step instruction
**Notes-- there are many ways to achieve. This is just one simple way to do it.