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);
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有