摘要: 对于ListView内部的ListView,一般用来展示少量的列表数据。内部的ListView的高度看起来是一个固定值且无法滑动,这个就比较蛋疼了。、提供两种解决方案,方案的核心都是重新设置内部ListView的高度。1 通过定制组件,重新写一个控件,继承于ListView.public class CustomisedListView extends ListView{public CustomisedListView(Context context) {super(context);}public CustomisedListView(Context context, AttributeS 阅读全文