0
以下のコードは私のプログラムの一部です。ボタンsunday
をクリックすると、4つのボタンが作成されます。しかし、それはaddView
一部でクラッシュ:addViewでボタンを動的に追加できない
sunday.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
LinearLayout lay (LinearLayout)v.findViewById(R.id.lay_schedule);
Button btnS1 = new Button(getContext());
Button btnS2 = new Button(getContext());
Button btnS3 = new Button(getContext());
Button btnS4 = new Button(getContext());
btnS1.setText("Add Your Lesson");
btnS2.setText("Add Your Lesson");
btnS3.setText("Add Your Lesson");
btnS4.setText("Add Your Lesson");
lay.addView(btnS1);
lay.addView(btnS2);
lay.addView(btnS3);
lay.addView(btnS4);
}
});