胡子哥哥
在Java代码中设置背景资源如果在res drawable下面:1view.setBackgroundResource(R.drawable.img);背景资源如果是颜色值:1view.setBackgroundColor(R.color.white);背景资源如果是drawable对象:1view.setBackground(drawable); 在xml中设置1android:backgroud="@drawable/img"或1android:backgroud="@color/white"