You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you sir, for a good library, though i have some concerns about its performance. You are using strange approach for adapter.
For example in setAdapter() method:
for (int i = 0; i < mAdapter.getCount(); i++) {
mAdapter.addView(i);
}
It's bad cause all views are always in RAM, so it slows the performance dramatically. What if i have about 30 custom views. It will be lagging. Consider creating honest adapter for this purposes.
The text was updated successfully, but these errors were encountered:
Thank you sir, for a good library, though i have some concerns about its performance. You are using strange approach for adapter.
For example in setAdapter() method:
It's bad cause all views are always in RAM, so it slows the performance dramatically. What if i have about 30 custom views. It will be lagging. Consider creating honest adapter for this purposes.
The text was updated successfully, but these errors were encountered: