0
PercentRelativeLayoutの高さをパーセンテージで設定したいとします。PercentRelativeLayoutでpercentHeightをプログラムで設定する方法
PercentRelativeLayout layout = new PercentRelativeLayout(this);
PercentRelativeLayout.LayoutParams llp = new PercentRelativeLayout.LayoutParams(PercentRelativeLayout.LayoutParams.MATCH_PARENT, 50%);
layout.setLayoutParams(llp);
myLayout.addView(layout);
MatchParentまたはWrap_Contentではなく、LayoutParamsでpercentHeight(50%)を使用するとします。
私はあなたのコードを試してみましたが、それは動作しません。 'PercentLayoutHelper.PercentLayoutInfo info = params.getPercentLayoutInfo();この行のどこかにエラーがあります。 ' –
@elbertrivas、更新しました。 – azizbekian
ありがとうございました! –