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.
如何在不滚动的情况下设置要在列表中显示的项目数?
示例:我有一个包含 10 个项目的列表。我希望只出现 3 个项目,并且我必须滚动才能查看其余项目。
我认为 Listview 中显示的项目数量取决于列表可用的大小。我会尝试限制列表大小的布局。可能不太容易实现如此详细的布局,不同的屏幕尺寸可能会显示更多项目等。
做就是了:
list.remove(3); list.remove(4); ... list.remove(9);
在 listview 适配器的构造函数中。