ScrollView嵌套ListView只显示一行的问题 1.思路:给listview重新添加一个高度. listview的高度==listview.item的高度之和. 2.注意:关键是添加listItem.measure(0, 0);,listview的item的布局一定要线性布局.其他布局就会报错. 3.贴上网上找到代码 public class Utility { public static void setListViewHeightBasedOnChildren(ListView l…
private Color controleColor; [Browsable(true)] [Description("控件颜色"), Category("自定义"), DefaultValue("")] public Color ControleColor { get { return controleColor; } set { controleColor = value; } }…