Open
Description
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.
Metadata
Metadata
Assignees
Labels
No labels