“@android:drawable/ic_” vs “@*android:drawable/ic_”

前端 未结 1 1164
情书的邮戳
情书的邮戳 2021-01-02 22:53

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条回答
  • 2021-01-02 23:01

    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.

    0 讨论(0)
提交回复
热议问题