Paak
Results
2
comments of
Paak
可以将高度补回去,不过加多少还是要自己计算
``` stepView.post(new Runnable() { @Override public void run() { ViewGroup.LayoutParams layoutParams = stepView.getLayoutParams(); layoutParams.height = stepView.getHeight() + 60; stepView.setLayoutParams(layoutParams); } }); ```