8
這裏是我的代碼如何包裝內容申報動態按鈕代碼
Button myButton = new Button(this);
myButton.setText("Press Me");
myButton.setTextColor(Color.WHITE);
LinearLayout layout = (LinearLayout) findViewById(R.id.linearLayout1);
layout.addView(myButton);
如何添加wrapcontent
這個按鈕?
感謝myButton.setLayoutParams包裹內容(新的LayoutParams (LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));爲我工作 – Sando
hehe是啊你需要它爲我的按鈕!我認爲佈局:)同樣的事情 –