Back to project page Common-Library.
The source code is released under:
Apache License
If you think the Android project Common-Library listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.morgan.library.widget; /*from ww w.ja va2 s . c o m*/ import android.content.Context; import android.util.AttributeSet; import android.widget.ListView; /** * ?????????scrollView??ListView * * @author Morgan.Ji * */ public class CustomListView extends ListView { public CustomListView(Context context, AttributeSet attrs) { super(context, attrs); } public CustomListView(Context context) { super(context); } public CustomListView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } @Override public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST); super.onMeasure(widthMeasureSpec, expandSpec); } }