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

Chl*_*loe 10 android android-theme

我有

android:button="?android:attr/listChoiceIndicatorSingle"
Run Code Online (Sandbox Code Playgroud)

在CheckBox的布局上.我按F3带我去定义,它只是说

    <!-- Drawable to use for single choice indicators. -->
    <attr name="listChoiceIndicatorSingle" format="reference" />
Run Code Online (Sandbox Code Playgroud)

android-sdk/platforms/android-17/data/res/values/attrs.xml.我搜索了整个文件,这是唯一的情况.

我如何找到它引用的drawable?

小智 9

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

<item name="listChoiceIndicatorSingle">@android:drawable/btn_radio_holo_dark</item>
Run Code Online (Sandbox Code Playgroud)