标签:
import android.content.Context; import android.util.AttributeSet; import android.widget.ListView; /** * 禁止滚动的ListView * Created by Administrator on 2015/10/21 0021. */ public class NoScrollListview extends ListView{ public NoScrollListview(Context context, AttributeSet attrs) { super(context, attrs); } /** * 设置不滚动 */ public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST); super.onMeasure(widthMeasureSpec, expandSpec); } }
标签:
原文地址:http://www.cnblogs.com/kangweifeng/p/4897577.html