According to Android source code documentation:
- Non-public, non-static field names start with m.
- Static field names start with s.
- Other fields start with a lower case letter.
- Public static final fields (constants) are ALL_CAPS_WITH_UNDERSCORES.
Note that this is for writing Android source code. For creating Android apps, the Google Java Style Guide may be more helpful.