ScrollView中嵌套ListView滚动冲突的两种解决方案
Posted 志向远大
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ScrollView中嵌套ListView滚动冲突的两种解决方案相关的知识,希望对你有一定的参考价值。
解决方案
方法1
1、使用LinearLayout取代ListView
既然ListView不能适应ScrollView、那就换一个可以适应ScrollView的控件、干嘛非要吊死在ListView这一棵树上呢?而LinearLayout是最好的选择、但如果我仍想继续使用已经定义好的Adater呢?我们可以直接循环已经写好的Adapter、把item添加到LinearLayout即可、代码如下:
/**
* 绑定布局
*/
public void bindLinearLayout()
int count = adapter.getCount();
this.removeAllViews();
for (int i = 0; i < count; i )
View v = adapter.getView(i, null, null);
v.setOnClickListener(this.mClickListener);
//绑定Adapter的数据到LinearLayout布局
mLinearLayout.addView(v);
Log.v("countTAG", "" count);
方法2
2、自定义可适应ScrollView的ListView
就是要用ListView怎么办?那就只好自定义一个类继承自ListView、通过重写其onMeasure方法、达到对ScrollView适配的效果、下面是继承了ListView的自定义类、可以直接使用的。
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ListView;
public class ListViewForScrollView extends ListView
public ListViewForScrollView(Context context)
super(context);
public ListViewForScrollView(Context context, AttributeSet attrs)
super(context, attrs);
public ListViewForScrollView(Context context, AttributeSet attrs,
int defStyle)
super(context, attrs, defStyle);
@Override
/**
* 重写该方法、达到使ListView适应ScrollView的效果
*/
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
这个方法只要重写onMeasure方法、需要改动的地方比起方法一少不少代码、在xml布局中和Activty中使用的ListView改成这个自定义ListView就行了、这个方法有一个的小毛病、就是默认显示的首项是ListView、需要手动把ScrollView滚动至最顶端、代码如下:
sv = (ScrollView) findViewById(R.id.act_solution_4_sv);
sv.smoothScrollTo(0, 0);
三、总结
方法1:优点是完全解决了ScrollView嵌套ListView的问题、在Activity中手动为LinearLayout添加子项控件、不过需要注意的是、在添加前需要调用其removeAllViews的方法、否则可能会出现预想不到的事情、缺点是不能向ListView那样可以使用ViewHolder结构、在加载大量子项时会费很多时间在findViewById中、如果你的列表数据比较少的话、不妨试试这个方法、除了不能使用ViewHolder结构、使用方法几乎和ListView一样。
方法2:比方法1更简单、代码更少、同时保留了ListView原有的所有方法、包括notifyDataSetChanged方法、相比其他方法是最趋近于完美的方法、只是需要在Activity中设定ScrollView滚动至顶端、如果你还在犹豫不决的话就选这个方法吧、我想我以后是只会用这个方法了
以上是关于ScrollView中嵌套ListView滚动冲突的两种解决方案的主要内容,如果未能解决你的问题,请参考以下文章
使用LinearLayout实现ListView,解决ListView和ScrollView滚动冲突