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

自定义Listview

时间:2014-09-18 13:03:43      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   os   sp   on   c   ef   htm   r   res   

public class MyListView extends ListView {

 public MyListView(Context context) {  

   super(context); 

 }

 public MyListView(Context context, AttributeSet attrs) {  

   super(context, attrs);

 }

 public MyListView(Context context, AttributeSet attrs, int defStyle) {    

super(context, attrs, defStyle);  

}

 @Override   protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 

   int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,     MeasureSpec.AT_MOST);

  super.onMeasure(widthMeasureSpec, expandSpec); 

}

}

自定义Listview

标签:style   os   sp   on   c   ef   htm   r   res   

原文地址:http://www.cnblogs.com/hudabing/p/3978815.html

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