1つのボタンがクリックされたときに動的にボタンを作成しています。つまり、そのボタンのonClickイベントの下にあります。ただし、1つのボタンが作成されるたびにn個のボタンが動的に作成されます。
LinearLayout ll = (LinearLayout) findViewById(R.id.linearLayout1);
.....
public void onClick(View arg0) {
Button topArtistbutton = new Button(SalesPanel.this, null,android.R.attr.buttonStyleSmall);
topArtistbutton.setText("Top Artist");
topArtistbutton.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT));topArtistbutton.setId(3);
ll.addView(topArtistbutton);
}
ボタンを1つだけ動的に作成したい