Button myButton = new Button(this);myButton.setText("Push Me");LinearLayout ll = (LinearLayout)findViewById(R.id.buttonlayout);LayoutParams lp = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);ll.addView(myButton, lp);
Button myButton = new Button(this);myButton.setText("Push Me");LinearLayout ll = (LinearLayout)findViewById(R.id.buttonlayout);LayoutParams lp = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);ll.addView(myButton, lp);