【工作总结】ListView使用总结

作者: dongbingliu | 来源:发表于2017-08-04 18:05 被阅读52次

    工作中使用ListView开发较多,使用过程中遇到了部分问题,记录下来,方便下次查阅;

    1. 设定 item 尺寸没有生效:

    ListView 在 BaseAdapter getView()方法中,通过LayoutInflat 获取view布局,实际显示尺寸与自己设定不一致

    解决方案:
    inflate ( ) view 时候,使用三个参数的构造函数

    view = LayoutInflater.from(mContext).inflate(R.layout.three_dimen_item,parent,false);
    

    相关文章

      网友评论

        本文标题:【工作总结】ListView使用总结

        本文链接:https://www.haomeiwen.com/subject/qikblxtx.html