10

我有

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. 我搜索了整个文件,这是唯一的一次。

如何找到它引用的可绘制对象?

4

1 回答 1

10

属性的值在theme.xml 中定义。检查 SDK 中的“theme.xml”。就我而言,它定义如下:

<item name="listChoiceIndicatorSingle">@android:drawable/btn_radio_holo_dark</item>
于 2013-09-15T06:35:13.837 回答