@Override
  protected void onLayout(boolean changed, int l, int t, int r, int b) {
    if (!changed) return;

    // Center the widgets in the view
    mLeftSlider.layout(l, t, r, b, isHorizontal() ? Slider.ALIGN_LEFT : Slider.ALIGN_BOTTOM);
    mRightSlider.layout(l, t, r, b, isHorizontal() ? Slider.ALIGN_RIGHT : Slider.ALIGN_TOP);
  }