android 动态设置控件高度
LayoutParams lp = tvHello.getLayoutParams();lp.height = heightOfHello;tvHello.setLayoutParams(lp);