Reputation: 344
I'm starting on android, and I've found a convection that I don't know decipher their meaning.
For example:
private NavigationDrawerFragment mNavigationDrawerFragment;
private CharSequence mTitle;
I don't know the meaning of character 'm'. I supouse that is a convection of android, but i think that it meaning something.
my? myNavigationDrawerFragment? myTitle? I dont' know.
Thanks.
Upvotes: 0
Views: 1391
Reputation: 8338
You can find the answer to this from the Android Code Style guide.
Follow Field Naming Conventions
You'll see it around everywhere. It's the convention. I've always thought of it as myObject, but it really doesn't matter. That's just the convention. Others think of it as "member" object.
Upvotes: 4