在Android中,setBackground()方法用于设置View(视图)的背景。这个方法接受一个Drawable对象作为参数,可以是颜色、图片或者是自定义的Drawable对象。通过设置背景,可以改变View的外观和样式。
示例代码:
// 设置背景颜色
view.setBackground(new ColorDrawable(Color.RED));
// 设置背景图片
view.setBackground(ContextCompat.getDrawable(context, R.drawable.background_image));
// 设置自定义Drawable对象
view.setBackground(new CustomDrawable());
需要注意的是,setBackground()方法在Android API 16(Android 4.1)及以上版本中可用。如果需要支持更旧的Android版本,可以使用setBackgroundDrawable()方法。