标签: android xml gridview static imageview
我无法找到如何静态地在网格视图中添加图像。即直接在layout.xml。
通过搜索所有我发现我们可以在java中动态添加图像视图,而不是直接在xml中添加。
答案 0 :(得分:4)
使用GridView,您需要编写一个Adapter(名为BasicAdapter,ArrayAdapter,Listadapter等)。每个Adapter都有一个名为“getView(View view,View parent,args)”的函数 覆盖它并返回您想要在GridView中拥有的视图。