我想以百分比设置 PercentRelativeLayout 的高度。
PercentRelativeLayout layout = new PercentRelativeLayout(this);
PercentRelativeLayout.LayoutParams llp = new PercentRelativeLayout.LayoutParams(PercentRelativeLayout.LayoutParams.MATCH_PARENT, 50%);
layout.setLayoutParams(llp);
myLayout.addView(layout);
我想在 LayoutParams 中使用 percentHeight(50%),而不是 Match_Parent 或 Wrap_Content。