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.
我正在构建一个包含 1,000 行的动态表格布局。构建相当快,但绘制它需要 10 多秒。该表包含三个图像按钮和 7 个文本列。一旦加载表执行得很好,但重新加载它(即更改排序顺序时)也很慢。
我正在构建一个包含 1,000 行的动态表格布局
这是一个非常糟糕的主意。对于初学者,你会OutOfMemoryError在某些设备上崩溃,因为你在一个活动中就消耗了几 MB 的堆空间。
OutOfMemoryError
请使用ListView或其他形式的AdapterView,以便只创建填充屏幕所需的视图(然后在用户滚动时回收)。
ListView
AdapterView