程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> button-給動態創建的按鈕之間添加空間

button-給動態創建的按鈕之間添加空間

編輯:編程綜合問答
給動態創建的按鈕之間添加空間

在程序中我動態的創建了很多按鈕,但是如何在兩個按鈕之間添加空間呢?我用這樣的代碼
但是沒有實現,大家能幫助我嗎?謝謝!

private LinearLayout LLDynamic;

 private RelativeLayout.LayoutParams ParaOne;

ParaOne = new RelativeLayout.LayoutParams(280, 30);

Button button1= new Button(Twindo_fromEditGroup.this);
button1.setTextSize(16);


LLDynamic = new LinearLayout(Twindo_fromEditGroup.this); 
LLDynamic.setOrientation(LinearLayout.VERTICAL);
LLDynamic.addView(button1,ParaOne);

最佳回答:


使用以下代碼添加空白:

Button button1 = new Button(this);
LinearLayout.LayoutParams rel_button1 = new LinearLayout.LayoutParams(buttonWidth, buttonHeight);
rel_button1.setMargins(20, 0, 0, 0);
button1.setLayoutParams(rel_button1);
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved