ScrollView中ListView显示不全解决方法

本文介绍了一种通过自定义ListView并重写onMeasure方法来实现ListView与ScrollView适配的方法。自定义类ListViewForScrollView继承自ListView,并通过重写onMeasure方法确保ListView能够适应ScrollView的滚动效果。
摘要由CSDN通过智能技术生成
自定义一个类继承自ListView,通过重写其onMeasure方法,达到对ScrollView适配的效果。


下面是继承了ListView的自定义类:


[java]  view plain  copy
  1. import android.content.Context;  
  2. import android.util.AttributeSet;  
  3. import android.widget.ListView;  
  4. public class ListViewForScrollView extends ListView {  
  5.     public ListViewForScrollView(Context context) {  
  6.         super(context);  
  7.     }  
  8.     public ListViewForScrollView(Context context, AttributeSet attrs) {  
  9.         super(context, attrs);  
  10.     }  
  11.     public ListViewForScrollView(Context context, AttributeSet attrs,  
  12.         int defStyle) {  
  13.         super(context, attrs, defStyle);  
  14.     }  
  15.     @Override  
  16.     /** 
  17.      * 重写该方法,达到使ListView适应ScrollView的效果 
  18.      */  
  19.     protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {  
  20.         int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,  
  21.         MeasureSpec.AT_MOST);  
  22.         super.onMeasure(widthMeasureSpec, expandSpec);  
  23.     }  
  24. }  

三个构造方法完全不用动,只要重写onMeasure方法,需要改动的地方比较少。


在xml布局中和Activty中使用的ListView改成这个自定义ListView就行了。

这个方法有一个同样的毛病,就是默认显示的首项是ListView,需要手动把ScrollView滚动至最顶端。


  • sv = (ScrollView) findViewById(R.id.act_solution_4_sv);
  • sv.smoothScrollTo(0, 0);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值