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 文件,它返回一个包含名称地址和图像的对象。现在我想在网格视图中显示文本和图像,但不在同一列中。任何建议将不胜感激,在此先感谢。
如果您只想将 gridView 用于 2 列,那么您可以使用 tableLayout 并以编程方式添加 tableRows。就像是 :
<TableLayout android:orientation="vertical" android:stretchColumns:"0"> <TableRow> <TextView android:id=@+id/name /> <ImageView android:id=@+id/image /> </TableRow> <TableLayout>