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.
假设我为一个图像创建了一个XML,相同的 id 可以用于在屏幕中创建图像的多个实例吗?
也就是说,假设我想在屏幕上创建 10 个球,我为一个球定义 XML 就足够了,然后可以重复使用它来创建 10 个球吗?
您可以根据需要多次放大同一视图。唯一的问题是所有视图都具有相同的 ID,如果它们属于同一个父视图,那么您只能findViewById()在代码中访问第一个视图。在这种情况下,您可能希望使用 ListView。
findViewById()