mView.setBackgroundColor(Color.parseColor("#b9dedcdc"));
int color:
1. Color.parseColor("#b9dedcdc") //String返回int
int(color资源id) 到int(color值)?
context.getColor(R.color.common_text_color)
已过时,替代方法:
2. ContextCompat.getColor(context, R.color.common_text_color)
int color 应用于background:
view.setBackgroundColor(int color);