滚动视图中列表视图的滚动功能

时间:2013-12-18 13:36:47

标签: android listview scrollview

在滚动视图中的我的应用程序中,我正在使用列表视图。但列表视图不滚动。任何人都可以建议我该怎么做。 我搜索了它,发现列表视图不在滚动视图中滚动 任何解决方案?

11 个答案:

答案 0 :(得分:8)

您可以创建自己的列表视图,并将expand设置为false。这是示例类

public class ExpandableHeightListView extends ListView {

boolean expanded = false;

public ExpandableHeightListView(Context context) {
    super(context);
}

public ExpandableHeightListView(Context context, AttributeSet attrs) {
    super(context, attrs);
}

public ExpandableHeightListView(Context context, AttributeSet attrs,
        int defStyle) {
    super(context, attrs, defStyle);
}

public boolean isExpanded() {
    return expanded;
}

@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    // HACK! TAKE THAT ANDROID!
    if (isExpanded()) {
        int expandSpec = MeasureSpec.makeMeasureSpec(
                Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
        super.onMeasure(widthMeasureSpec, expandSpec);
        ViewGroup.LayoutParams params = getLayoutParams();
        params.height = getMeasuredHeight();
    } else {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    }
}

public void setExpanded(boolean expanded) {
    this.expanded = expanded;
}
 }

您可以像这样使用您的activity.clas

 ExpandableHeightListView listview = (ExpandableHeightListView) findViewById(R.id.list);
    listview.setExpanded(true);

在布局文件中,您可以在滚动视图中的列表视图位置使用ExpandableHeightListView。它会滚动。

答案 1 :(得分:5)

从ScrollView中排除ListView,因为ListView中已经有滚动机制。

答案 2 :(得分:1)

不要将列表视图放在滚动视图中。

listview已经处理了滚动,所以它不需要在scrollview中。

您应该更改布局以反映这一点。

答案 3 :(得分:1)

ListView Inside Scroll View无效。把它放在一边。因为两者都具有滚动功能,所以当它们聚集在一起时滚动将不起作用。

答案 4 :(得分:1)

使用此课程。

public class CustomScrollView extends ScrollView {
    public CustomScrollView(Context context, AttributeSet attrs) {
            super(context, attrs);
    }

    public boolean onTouchEvent(MotionEvent ev) {
        return true;
    }

    public boolean onInterceptTouchEvent(MotionEvent ev) {
        return false;
    }
}

在xml布局中,使用CustomScrollView的包名称和类更改scrollview标记。即改为 com.test.CustomScrollView

在你的内部,Activity获取自定义滚动视图的id并包含此代码。

private int currentX, currentY;
private CustomScrollView customScrollView;

customScrollView.setSmoothScrollingEnabled(true);
customScrollView.setOnTouchListener(new OnTouchListener() {

    @Override
    public boolean onTouch(View v, MotionEvent event) {
        // TODO Auto-generated method stub
        switch(event.getAction()){
        case MotionEvent.ACTION_DOWN: {
            currentX = (int) event.getRawX();
            currentY = (int) event.getRawY();
            break;
        }
         case MotionEvent.ACTION_MOVE: {
                @SuppressWarnings("unused")
                int x2 = (int) event.getRawX();
                int y2 = (int) event.getRawY();
                customScrollView.scrollBy(0 , currentY - y2);
                currentY = y2;
                break;
            }   
            case MotionEvent.ACTION_UP: {
                break;
            }
        }
        return true;
    }
}); 

答案 5 :(得分:1)

不要将listView放在ScrollView中。 您应该阅读Romain Guy的答案和上面的评论:

How can I put a ListView into a ScrollView without it collapsing?

您可以从滚动视图中排除ListView。 如果你想在scrollView中有一个“列表”,你可以使用LinearLayout。像这样:

public class MyListLayout extends LinearLayout implements
        View.OnClickListener {

    private Adapter list;
    private View.OnClickListener mListener;

    public MyListLayout(Context context) {
        super(context);
    }

    public MyListLayout(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);

    }

    public EvernoteListLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    public void onClick(View v) {
        if (mListener!=null)
            mListener.onClick(v);
    }

    public void setList(Adapter list) {
        this.list = list;

        //Popolute list
        if (this.list!=null){
            for (int i=0;i<this.list.getCount();i++){
                View item= list.getView(i, null,null);
                this.addView(item);
            }
        }

    }

    public void setmListener(View.OnClickListener mListener) {
        this.mListener = mListener;
    }
}



// Create ArrayAdapter
 MyListAdapter mListAdapter = new MyListAdapter();
 MyListLayout mLay = (MyListLayout) findViewById(R.id.box_list_ev);
 if (mLay != null) {
        mLay.setList(mListAdapter);
 }

答案 6 :(得分:0)

我假设你有一个非常特殊的情况,因为我必须这样做。我有一个看起来像这样的助手类:

    public class ScrollViewListHelper {
public static void getListViewSize(ListView myListView) {
    ListAdapter myListAdapter = myListView.getAdapter();
    if (myListAdapter == null) {
        //do nothing return null
        return;
    }
    //set listAdapter in loop for getting final size
    int totalHeight = 0;
    for (int size = 0; size < myListAdapter.getCount(); size++) {
        View listItem = myListAdapter.getView(size, null, myListView);
        listItem.measure(0, 0);
        totalHeight += listItem.getMeasuredHeight();
    }
  //setting listview item in adapter
    ViewGroup.LayoutParams params = myListView.getLayoutParams();
    params.height = totalHeight + (myListView.getDividerHeight() * (myListAdapter.getCount() - 1));
    myListView.setLayoutParams(params);
    // print height of adapter on log
    Log.i("height of listItem:", String.valueOf(totalHeight));
}

}

然后在我初始化listView的适配器后,我这样做:

    ScrollViewListHelper.getListViewSize(listViewMeasurements);

答案 7 :(得分:0)

import android.content.Context;
import android.widget.ListView;

public class MyListView extends ListView {

    public MyListView(Context context) {
        super(context);
    }

    public MyListView(Context context, android.util.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);
    }
}

使用此

答案 8 :(得分:0)

滚动视图“吃掉”所有的触摸...... 你应该避免将滚动元素(ListView)插入另一个滚动元素(滚动视图),你的用户可能会发疯。

在这些情况下,我使用LinearLayout代替ListView,然后向其中展示为表示每个List元素而创建的customview,这是一个示例,可以随意向我询问:

LinearLayout containerLinearLayout=    (LinearLayout)findViewById(R.id.containerLinearLayout);
containerLinearLayout.removeAllViews();
for(int i=0;i<array.length();i++){
JSONObject convocazione=array.getJSONObject(i);
View child = getLayoutInflater().inflate(R.layout.list_element_layout,null);
TextView txtDettaglioLuogo=(TextView)child.findViewById(R.id.txtDettaglioLuogo);
TextView txtOra=(TextView)child.findViewById(R.id.txtOra);


txtOra.setText("text");
txtData.setText("more text");


containerLinearLayout.addView(child);
}

答案 9 :(得分:0)

最后我得到了滚动问题的解决方案,我得到了自定义scrollview类来管理scrollview。

import android.content.Context;
import android.util.AttributeSet;
import android.util.Log;
import android.view.MotionEvent;
import android.widget.ScrollView;

public class VerticalScrollview extends ScrollView{

public VerticalScrollview(Context context) {
    super(context);
}

 public VerticalScrollview(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public VerticalScrollview(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
    final int action = ev.getAction();
    switch (action)
    {
        case MotionEvent.ACTION_DOWN:
                Log.i("VerticalScrollview", "onInterceptTouchEvent: DOWN super false" );
                super.onTouchEvent(ev);
                break;

        case MotionEvent.ACTION_MOVE:
                return false; // redirect MotionEvents to ourself

        case MotionEvent.ACTION_CANCEL:
                Log.i("VerticalScrollview", "onInterceptTouchEvent: CANCEL super false" );
                super.onTouchEvent(ev);
                break;

        case MotionEvent.ACTION_UP:
                Log.i("VerticalScrollview", "onInterceptTouchEvent: UP super false" );
                return false;

        default: Log.i("VerticalScrollview", "onInterceptTouchEvent: " + action ); break;
    }

    return false;
}

@Override
public boolean onTouchEvent(MotionEvent ev) {
    super.onTouchEvent(ev);
    Log.i("VerticalScrollview", "onTouchEvent. action: " + ev.getAction() );
     return true;
}
}

答案 10 :(得分:0)

检查ListView的onMeasure源代码,你会发现如果高度measureSpec是免费的,那么listview的高度只是一个项目的高度再加上一些填充,见下文:

 if (heightMode == MeasureSpec.UNSPECIFIED) {
        heightSize = mListPadding.top + mListPadding.bottom + childHeight +
                getVerticalFadingEdgeLength() * 2;
    }

因此我们可以简单地将高度SpecMode更改为AT_MOST,高度大小是其父级的左高度大小。 以下是解决方案:

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    heightMeasureSpec = MeasureSpec.makeMeasureSpec(MeasureSpec.getSize(heightMeasureSpec), 
            MeasureSpec.AT_MOST);
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}