What is the `abc` prefix in R.dimen fields?
I wonder what the prefix abc
in the fields means R.dimen
.
https://developer.android.com/reference/android/support/v7/appcompat/R.dimen.html
Can I use these values ββin my own layout.xml
or somewhere?
+3
Takayuki sato
source
to share
1 answer
This is the prefix used by AppCompat to minimize naming conflicts with your code and other libraries. This is an acronym ActionBarCompat
.
You can find the commit that originally added this prefix to AppCompat here .
+9
Tanis.7x
source
to share