@TargetApi(16)
 @SuppressWarnings("deprecation")
 public void setBoxBackground(Drawable background) {
   if (background == null) {
     background = TNPreferenceManager.getBackgroundDrawable1(getSectionRefId());
   }
   if (UIUtils.hasJellyBean()) {
     setBackground(background);
   } else {
     setBackgroundDrawable(background);
   }
 }