码迷,mamicode.com
首页 > 其他好文 > 详细

开发随记 <二> 自定义listview遇到得问题

时间:2015-02-13 11:54:41      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

有个小需求, 编码头部驻留得item, 其中就用到了, 生成默认得layoutparams得东西,

// read layout parameters
       AbsListView.LayoutParams layoutParams = (LayoutParams) pinnedView.getLayoutParams();

if (layoutParams == null) {
            layoutParams = this.generateDefaultLayoutParams();
            pinnedView.setLayoutParams(layoutParams);
        }

anroid5.0.1 的实现

  @Override
    protected ViewGroup.LayoutParams generateDefaultLayoutParams() {
        return new AbsListView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
                ViewGroup.LayoutParams.WRAP_CONTENT, 0);
    }


anroid4.0的实现

    /**
     * Returns a set of default layout parameters. These parameters are requested
     * when the View passed to {@link #addView(View)} has no layout parameters
     * already set. If null is returned, an exception is thrown from addView.
     *
     * @return a set of default layout parameters or null
     */
    protected LayoutParams generateDefaultLayoutParams() {
        return new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    }

也许你已经发现问题了, 低版本的generateDefaultLayoutParams生成的是ViewGroup的layoutparams, 如果你要强转成AbsListView.LayoutParams这个肯定是要报错得. 父亲怎么像儿子呢



开发随记 <二> 自定义listview遇到得问题

标签:

原文地址:http://my.oschina.net/yulin/blog/378292

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