Strictly speaking, the "limit" is 80.
Lint reports the following when you have too many views in the layout: -
AndroidLintTooManyViews
Description
A layout has too many views Using too many views in one layout is bad for performance. Consider using complex drawings or other tricks to reduce the number of views in this layout. The default maximum number of views is 80, but can be configured with the ANDROID_LINT_MAX_VIEW_COUNT environment variable.
However, I used a tabular layout that changed the number of views several times (mainly TextViews), and I had no problems. I did not change the variable ANDROID_LINT_MAX_VIEW_COUNT.
source share