您能否告诉我如何为ViewGroup设置setHeight? 我看到有一个布局(l,t,r,b);
但是这与setHeight()不同,因为我不知道viewGroup的顶部/底部应该在哪里。我需要设置ViewGroup的高度并将其返回到ListAdapter。
谢谢。
答案 0 :(得分:6)
您可以尝试使用setLayoutParams()
myViewGroup.setLayoutParams(new LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.MATCH_PARENT));
请参阅here LayoutParams参数的说明
public ViewGroup.LayoutParams (int width, int height)
Creates a new set of layout parameters with the specified width and height.
width the width, either MATCH_PARENT, WRAP_CONTENT or a fixed size in pixels
height the height, either MATCH_PARENT, WRAP_CONTENT or a fixed size in pixels