コード例 #1
0
 @Override
 public int getVerticalScrollbarWidth() {
   mForceFastScrollAlwaysVisibleDisable = true;
   final int superWidth = super.getVerticalScrollbarWidth();
   mForceFastScrollAlwaysVisibleDisable = false;
   if (isFastScrollAlwaysVisible()) {
     return Math.max(superWidth, mFastScroller.getWidth());
   }
   return superWidth;
 }