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.
我将绘制一个 10x10 PNG 图像的网格。每个图像为 32x32 像素。所有的图像都是独一无二的。我认为最简单的方法似乎是将每个图像放在 ImageView 中。
如果将所有 ImageView 添加到布局中,这会给我带来某种性能影响吗?
有没有更聪明的方法来绘制这些图像?
我假设你的网格是一个网格视图。比它应该有一个适配器与您的物品。您需要查看的适配器中有一个 getView 方法。你在那里设置你的图像。我会看看 GridView 示例和这个示例
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/List14.html
看看如何编写高效的适配器。