プログラムで aButton
に aを追加する簡単な方法を実装しています。LinearLayout
setBackground(Drawable background) メソッドを呼び出すと、以下Error
がスローされます。
java.lang.NoSuchMethodError: android.widget.Button.setBackground
私の addNewButton メソッド:
private void addNewButton(Integer id, String name) {
Button b = new Button(this);
b.setId(id);
b.setText(name);
b.setTextColor(color.white);
b.setBackground(this.getResources().getDrawable(R.drawable.orange_dot));
//llPageIndicator is the Linear Layout.
llPageIndicator.addView(b);
}