我有
android:button="?android:attr/listChoiceIndicatorSingle"
关于CheckBox的布局。我按F3把我带到了定义,它只是说了
<!-- Drawable to use for single choice indicators. -->
<attr name="listChoiceIndicatorSingle" format="reference" />
android-sdk/platforms/android-17/data/res/values/attrs.xml
中的。我搜索了整个文件,这是唯一的情况。
如何找到它引用的drawable?
答案 0 :(得分:9)
属性的值在theme.xml中定义。检查SDK中的'theme.xml'。 就我而言,它定义如下:
<item name="listChoiceIndicatorSingle">@android:drawable/btn_radio_holo_dark</item>