shanwu
shanwu

Reputation: 1675

what does "?" mean in Android styles.xml files mean?

in Android Framework source code ~/core/res/res/values/styles.xml

there's one line:

    <item name="android:textColor">?textColorPrimaryInverse</item>

Could anyone tell me:

  1. What does "?textColorPrimaryInverse" mean?

  2. Where is "textColorPrimaryInverse" referenced ?

Upvotes: 0

Views: 182

Answers (1)

Deep Mehta
Deep Mehta

Reputation: 1237

Please check this link. So, you can get the idea about the textColorPrimaryInverse: http://developer.android.com/reference/android/R.attr.html#textColorPrimaryInverse

Upvotes: 1

Related Questions