Are there conventions how to name resources in Android? For example, buttons, textViews, menus, etc.
Are there conventions how to name resources in Android? For example, buttons, textViews, menus,
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t know whether there are any official recommendations.
For ids in my layouts with widgets and containers, I use the convention:
I do the same strategy for any dimens, strings, numbers, and colors I use in those layouts. However, I do try generalizing. e.g if all buttons have a common textColor, I won’t prefix the name with the layout. The resource name would be ‘button_textColor’. If all textColors are using the same the resource it will be named ‘textColor’. For Styles, this is usually the case as well.
For menu resources i use:
Animations are only different as you cannot use uppercase letters. Same goes for drawable xml resources, i believe.