TextView textView= (TextView)findViewById(R.id.textview);   
LinearLayout.LayoutParams linearParams =(LinearLayout.LayoutParams) textView.getLayoutParams(); //取控件textView当前的布局参数  
linearParams.height = 20;// 控件的高强制设成20  
  
linearParams.width = 30;// 控件的宽强制设成30   
  
textView.setLayoutParams(linearParams); //使设置好的布局参数应用到控件</pre>  

相关文章:

  • 2021-04-05
  • 2021-05-27
  • 2021-12-20
  • 2021-07-16
  • 2022-12-23
  • 2022-12-23
  • 2021-08-16
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案