AndroID ScrollVIEw嵌套ExpandableListVIEw显示不正常的问题的解决办法
前言:
关于ScrollVIEw嵌套ExpandableListVIEw导致ExpandableListVIEw显示不正常的问题解决方法有很多,在这里介绍一种小编亲自测试通过的方法。
重写ExpandableListVIEw:
实例代码:
package com.jph.vIEw; import androID.content.Context; import androID.util.AttributeSet; import androID.Widget.ExpandableListVIEw; /** * 重写ExpandableListVIEw以解决ScrollVIEw嵌套ExpandableListVIEw *<br> 导致ExpandableListVIEw显示不正常的问题 * @author jph * Date:2014.10.21 */ public class CustomExpandableListVIEw extends ExpandableListVIEw { public CustomExpandableListVIEw(Context context) { super(context); // Todo auto-generated constructor stub } public CustomExpandableListVIEw(Context context,AttributeSet attrs) { super(context,attrs); // Todo auto-generated constructor stub } public CustomExpandableListVIEw(Context context,AttributeSet attrs,int defStyle) { super(context,attrs,defStyle); // Todo auto-generated constructor stub } @OverrIDe protected voID onMeasure(int wIDthMeasureSpec,int heightmeasureSpec) { // Todo auto-generated method stub int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,MeasureSpec.AT_MOST); super.onMeasure(wIDthMeasureSpec,expandSpec); } }
在XML中将ExpandableListVIEw替换为重写的ExpandableListVIEw即可。
<com.jph.vIEw.CustomExpandableListVIEw androID:ID="@+ID/elitems" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content"/>
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
总结以上是内存溢出为你收集整理的Android ScrollView嵌套ExpandableListView显示不正常的问题的解决办法全部内容,希望文章能够帮你解决Android ScrollView嵌套ExpandableListView显示不正常的问题的解决办法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)