Android CheckedTextView - 动态设置checkMark
给定 CheckedTextView 的 checkMark 的 XML 属性:
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
如何动态设置 checkMark 属性(即从代码)? Android 有这方面的文档吗?
使用: Android 1.5
注意: 我正在构建一个常规 jar 库,它无法访问 android XML 资源文件或可绘制文件,因此所有内容都必须以编程方式创建。
Given this XML property of the CheckedTextView's checkMark:
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
How can you set the checkMark property dynamically (i.e. from code)?
Does Android have any documentation on this?
Using: Android 1.5
Note:
I am building a regular jar library that does not have any access to android XML resource files or drawables so everything has to be created programatically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从
CheckedTextView
的 API 文档来看,听起来像两个setCheckMarkDrawable
方法可以完成这项工作吗?您只需传入一个 StateListDrawable 即可。
From the API doc of
CheckedTextView
, it sounds like the twosetCheckMarkDrawable
methods would do the job?You just need to pass in a
StateListDrawable
.