So i get that private vars start with 's' like
private static int sSomeInt;
but what about those that are also final ?
i like that public static final variable names are in all caps, since it seems to me that i can't modify a variable in all-caps. for me, these two feel too much the same to me, even though they're supposed to be different?
private static int sMutableInt;
private static final int sImmutableInt;
and i can't tell by the style of the variable name itself that i can't re-assign sImmutableInt (only by the actual name of it)
- does Android not care about these? (not mentioned in https://source.android.com/source/code-style.html
- what is a common practice for this case?