setbackground方法?
java中setBackground的作用是設置背景顏色或者圖片。在android中是給某一個控件設置背景,如下:
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);