tags:

views:

380

answers:

1

I have seen this example:

@*android:color/secondary_text_light

What's that * asterisk doing there? What is the difference when using or not?

+1  A: 

As far as I know in Android XML it is supposed to be a wildcard, replacing any number, but it seems an odd placement to me.

There is nothing about it in the documentation or guide, other than here.

Perhaps it is a bug or mistake that doesn't cause compilation errors.

HXCaine