当前位置: 代码迷 >> Android >> android 动态设立控件高度
  详细解决方案

android 动态设立控件高度

热度:6396   发布时间:2013-02-26 00:00:00.0
android 动态设置控件高度
LayoutParams lp = tvHello.getLayoutParams();lp.height = heightOfHello;tvHello.setLayoutParams(lp);
  相关解决方案