Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有表格来显示数据。用户可以每天查看数据。我想通过使用视图寻呼机来完成它。问题是在视图寻呼机中,计数有限制。我不知道如何制作无限视图寻呼机。那可能吗?我想听听任何建议或教程。
谢谢。
final int VIRTUAL_VIEW_COUNT = Integer.MAX_VALUE; @Override public int getCount() { return VIRTUAL_VIEW_COUNT; }
将整数的最大值作为计数传递。