@ViewById and Android Code Style Guidelines for Contributors

Author: wrozwadCreated Nov 21, 2015Updated Jun 30, 2020
LabelsEnhancementContributionWelcome

When we not set an ID using @ViewById then AA try to find view id by field name. For now AA support two id's - camelCase and snake_case.

Unfortunatelly I prefer to use an Android Code Style Guidelines for Contributors and their field naming conventions, specially this:

Non-public, non-static field names start with m

eg. I want to use

@ViewById
RecyclerView mRecyclerView

but for now I must use @ViewById(R.id.recycler_view). You know - best programmers are lazy programmers :wink:. So yea, it's a feature request and it would be great to see it in the future. Any chances?

Source: androidannotations/androidannotations