返回列表 發帖

Android App - 改變Linearlayout 的尺寸

要在程式中顯示或隱藏, 採用 invisible 是效果不太好, 因為 linear layout 仍會佔用空間, 可採用以下方法
  1. LinearLayout LL1 = (LinearLayout) findViewById(R.id.linearLayout1);
  2. LayoutParams params = LL1 .getLayoutParams();
  3. params.height = 0;
  4. LL1 .setLayoutParams(params);
  5. LL1 .requestLayout();
複製代碼
Bill Tang     MSN:billtang@openplatform.com.hk
Openplatform Technology Co.,Ltd. 資訊坊科技有限公司  
無線工程施工、方案設計、無線產品、天饋材料、終端設備綜合供應商
Tel: 852-27491011  Fax: 852-81483532

返回列表