我如何找到什么?android:attr / listChoiceIndicatorSingle指向?

时间:2013-09-15 06:24:29

标签: android android-theme

我有

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?

1 个答案:

答案 0 :(得分:9)

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

<item name="listChoiceIndicatorSingle">@android:drawable/btn_radio_holo_dark</item>