首页 > 代码库 > 9.解决ScrollView与ListView共存时ListView高度无法完全显示的问题。
9.解决ScrollView与ListView共存时ListView高度无法完全显示的问题。
问题:
ScrollView与ListView共存时,ListView会只显示一行,其它行无法显示。
解决方案:
重写ListView如下即可解决问题。
/**解决ScorllView与ListView共存时,ListView只显示一行、不能完全显示的问题。
* @author Caiyuan Huang
* 2014-9-26
*/
public class CustomListView extends ListView {
public CustomListView(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
public CustomListView(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
}
public CustomListView(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);
}
}
9.解决ScrollView与ListView共存时ListView高度无法完全显示的问题。