我有一个扩展 Activity 并以编程方式添加一些 View 项目的类。
CheckBox checkBox = new CheckBox(this, null, android.R.style.Widget_CompoundButton_Star);
我想设置一些样式为 Android SDK 星星的复选框。将其样式设置为 Widget_CompoundButton_Star 后,我看不到任何复选框。尽管直接放入 xml 时,该 SDK 样式显然有效。
我在这里错过了什么吗?谢谢
// 正如普拉尼亚尼所说。使用android.R.attr.starStyle
代替有效。