IT月光

导航

SrcollView分页加载数据(第二种方法 自定义listView)

package com.baidu.ms;

import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.ListView;

public class MyScroll extends ListView{
float lastX;
float lastY;
    public MyScroll(Context context, AttributeSet attrs) {
        super(context, attrs);
        
    }
    //方法一:
    public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int expandSpec = MeasureSpec.makeMeasureSpec(/*Integer.MAX_VALUE >> 2*/600,
        MeasureSpec.AT_MOST);
        super.onMeasure(widthMeasureSpec, expandSpec);
        }
    
    
}

posted on 2016-04-14 09:32  IT月光  阅读(145)  评论(0编辑  收藏  举报