我正在使用ImageLoadingCell将图像加载到表中,ImageLoadingCell只是获取图像的URL。有没有办法设置图像的大小,所以浏览器会使图像的大小一致吗?
答案 0 :(得分:0)
Developer's Guide - Creating Custom Cells
您可以为渲染器更改默认模板@Template("<img src=\"{0}\"/>")
,例如更改为@Template("<img src=\"{0}\" height=\"100px\" width=\"100px\"/>")
,
请参阅文件ImageLoadingCell.class第70行