码迷,mamicode.com
首页 > 移动开发 > 详细

android tablelayout 显示图片

时间:2014-10-02 11:09:22      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:android   io   ar   sp   div   c   on   cti   r   

当在tablelayout中显示图片时,设置imageView为固定大小时,会出现divide by zero 错误

将LayoutParams 改为 TableRow.LayoutParams即可

TableRow.LayoutParams params = new TableRow.LayoutParams(50, 50);//50 x 50

TableRow row = new TableRow(activity);

ImageView imgView = new ImageView(activity);

imgView.setLayoutParams(params);

imageLoader.displayImage(fileName, imgView, options);//显示图片

row.addView(imgView);

vh.imgLayout.addView(row);

mark~

android tablelayout 显示图片

标签:android   io   ar   sp   div   c   on   cti   r   

原文地址:http://www.cnblogs.com/george-cw/p/4003856.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!