Android--setBackgroundDrawable和setBackgroundColor

来源:互联网 发布:matlab 字符 数组 赋值 编辑:程序博客网 时间:2024/05/21 10:46

1.设置背景图片,图片来源于drawable;

flightInfoPanel.setBackgroundDrawable(getResources().getDrawable(R.drawable.search_label_click));

2.转换字符串为int(颜色),设置字体的颜色,不能用于设置背景;

listItemView.deleteFilghtBg.setBackgroundColor(Color.parseColor("#F5F5DC"));

0 0