Does anybody know where I can find documentation on the asterisk? It appears to override the protection of 'private' variables in subclass android.R.drawable.
+1
A:
The @*android is used to access private resources. These resources can change or be removed between two versions of Android so you should NEVER use them. This is for framework use only.
Romain Guy
2010-10-08 01:13:09
I agree, and besides I found all the resources in one place so I can easily copy them to my app. But my question is is it documented anywhere?
cjavapro
2010-10-08 13:36:06
No it is not documented because it's a private API :)
Romain Guy
2010-10-08 15:54:36