Android Open Source - FPlayAndroid Bg List View






From Project

Back to project page FPlayAndroid.

License

The source code is released under:

Copyright (c) 2013-2014, Carlos Rafael Gimenes das Neves All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the followin...

If you think the Android project FPlayAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

//
// FPlayAndroid is distributed under the FreeBSD License
////from  ww  w .ja  v a  2 s  . c  o  m
// Copyright (c) 2013-2014, Carlos Rafael Gimenes das Neves
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this
//    list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice,
//    this list of conditions and the following disclaimer in the documentation
//    and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// The views and conclusions contained in the software and documentation are those
// of the authors and should not be interpreted as representing official policies,
// either expressed or implied, of the FreeBSD Project.
//
// https://github.com/carlosrafaelgn/FPlayAndroid
//
package br.com.carlosrafaelgn.fplay.ui;

import android.annotation.TargetApi;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Rect;
import android.graphics.drawable.Drawable;
import android.os.Build;
import android.os.SystemClock;
import android.text.Layout.Alignment;
import android.text.StaticLayout;
import android.util.AttributeSet;
import android.view.KeyEvent;
import android.view.MotionEvent;
import android.view.SoundEffectConstants;
import android.view.View;
import android.view.ViewDebug.ExportedProperty;
import android.widget.AbsListView;
import android.widget.ListAdapter;
import android.widget.ListView;

import br.com.carlosrafaelgn.fplay.list.BaseItem;
import br.com.carlosrafaelgn.fplay.list.BaseList;
import br.com.carlosrafaelgn.fplay.ui.drawable.BorderDrawable;
import br.com.carlosrafaelgn.fplay.ui.drawable.ColorDrawable;
import br.com.carlosrafaelgn.fplay.ui.drawable.NullDrawable;

public final class BgListView extends ListView implements ListView.OnScrollListener {
  public static interface OnAttachedObserver {
    public void onBgListViewAttached(BgListView list);
  }
  
  public static interface OnBgListViewKeyDownObserver {
    public boolean onBgListViewKeyDown(BgListView bgListView, int keyCode, KeyEvent event);
  }
  
  public static final int SCROLLBAR_SYSTEM = 0;
  public static final int SCROLLBAR_LARGE = 1;
  public static final int SCROLLBAR_INDEXED = 2;
  public static final int SCROLLBAR_NONE = 3;
  
  private OnAttachedObserver attachedObserver;
  private OnBgListViewKeyDownObserver keyDownObserver;
  private OnClickListener emptyListClickListener;
  private StaticLayout emptyLayout;
  private BaseList<? extends BaseItem> adapter;
  private boolean notified, attached, measured, sized, ignoreTouchMode, ignorePadding, tracking;
  private int leftPadding, topPadding, rightPadding, bottomPadding, scrollBarType, scrollBarWidth, scrollBarThumbTop, scrollBarThumbHeight,
    scrollBarTop, scrollBarLeft, scrollBarBottom, viewWidth, viewHeight, contentsHeight, itemHeight, itemCount, scrollBarThumbOffset, scrollState;
  private String[] sections;
  private int[] sectionPositions;
  int extraState;
  
  public BgListView(Context context) {
    super(context);
    init();
  }
  
  public BgListView(Context context, AttributeSet attrs) {
    super(context, attrs);
    init();
  }
  
  public BgListView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    init();
  }
  
  @SuppressWarnings("deprecation")
  private void init() {
    super.setSelector(new NullDrawable());
    super.setDivider(null);
    super.setDividerHeight(0);
    super.setCacheColorHint(UI.color_list);
    super.setHorizontalFadingEdgeEnabled(false);
    super.setVerticalFadingEdgeEnabled(false);
    super.setFadingEdgeLength(0);
    super.setFocusableInTouchMode(false);
    super.setFocusable(true);
    
    super.setScrollingCacheEnabled(false);
    super.setDrawingCacheEnabled(false);
    super.setChildrenDrawingCacheEnabled(false);
    super.setAnimationCacheEnabled(false);
    
    ignorePadding = true;
    super.setHorizontalScrollBarEnabled(false);
    super.setVerticalScrollBarEnabled(true);
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB)
      setVerticalScrollBarPosition();
    ignorePadding = false;
    super.setBackgroundDrawable(new ColorDrawable(UI.color_list));
    //setPadding(0, 0, 0, 0);
    //setFastScrollAlwaysVisible(true);
    //setFastScrollEnabled(true);
    //setScrollBarStyle(SCROLLBARS_INSIDE_INSET);
    //List color turns black while Scrolling
    //http://stackoverflow.com/questions/8531006/list-color-turns-black-while-scrolling
    //Remove shadow from top and bottom of ListView in android?
    //http://stackoverflow.com/questions/7106692/remove-shadow-from-top-and-bottom-of-listview-in-android
    //Changing the ListView shadow color and size
    //http://stackoverflow.com/questions/5627063/changing-the-listview-shadow-color-and-size
  }
  
  //massive workaround!!!
  //
  //according to this:
  //http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.3.3_r1/android/widget/AdapterView.java#AdapterView.setFocusable%28boolean%29
  //AdapterView overrides setFocusable and setFocusableInTouchMode in a way I don't like...
  //it calls View.setFocusable with false if the adapter is empty!!!
  //therefore, the only way to make it focusable at any time, is to pretend to be in filtermode at all times!
  @Override
  protected boolean isInFilterMode() {
    return true;
  }
  
  @SuppressWarnings("deprecation")
  public void setTopLeftBorders() {
    super.setBackgroundDrawable(new BorderDrawable(UI.color_highlight, UI.color_list, UI.thickDividerSize, UI.thickDividerSize, 0, 0, true));
    setPadding(UI.thickDividerSize, UI.thickDividerSize, 0, 0);
  }
  
  @TargetApi(Build.VERSION_CODES.JELLY_BEAN)
  @Override
  public void setBackground(Drawable background) {
  }
  
  @Override
  @Deprecated
  public void setBackgroundDrawable(Drawable background) {
  }
  
  @Override
  public void setBackgroundResource(int resid) {
  }
  
  @Override
  public void setBackgroundColor(int color) {
  }
  
  @Override
  @ExportedProperty(category = "drawing")
  public boolean isOpaque() {
    return true;
  }
  
  @Override
  protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) {
    //massive workaround!!!
    //
    //ListView's onFocusChanged has a BUG:
    //it scrolls the view vertically when the view has top padding != 0
    //
    //according to the source files
    //http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.3.3_r1/android/widget/AbsListView.java
    //http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.3_r1/android/widget/AbsListView.java
    //http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.3.3_r1/android/widget/ListView.java
    //http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.3_r1/android/widget/ListView.java
    //if previouslyFocusedRect is null and the control is in touch mode,
    //nothing is done, and therefore, the scroll does not happen ;)
    extraState = (gainFocus ? UI.STATE_SELECTED : 0);
    ignoreTouchMode = true;
    super.onFocusChanged(gainFocus, direction, gainFocus ? null : previouslyFocusedRect);
    int s;
    if (adapter != null) {
      s = adapter.getSelection();
      if (gainFocus) {
        //do not change to itemCount!
        final int ic = adapter.getCount();
        if (s < 0 || s >= ic) {
          s = getFirstVisiblePosition();
          if (s < 0)
            s = 0;
          if (s < ic) {
            adapter.setSelection(s, true);
            if (s <= getFirstVisiblePosition() || s >= getLastVisiblePosition())
              centerItem(s, false);
          }
        }
      }
      if (s >= 0 && (s >= getFirstVisiblePosition() && s <= getLastVisiblePosition())) {
        final int c = s - getFirstVisiblePosition();
        if (c >= 0 && c < getChildCount())
          getChildAt(c).invalidate();
      }
    }
    ignoreTouchMode = false;
  }
  
  @Override
  @ExportedProperty
  public boolean isInTouchMode() {
    return (ignoreTouchMode | super.isInTouchMode());
  }
  
  @TargetApi(Build.VERSION_CODES.HONEYCOMB)
  private void smoothScroll(int position, int y) {
    smoothScrollToPositionFromTop(position, y);
  }
  
  public void scrollItemToTop(int position, boolean smoothly) {
    //do not change to itemCount!
    if (position < 0 || adapter == null || position >= adapter.getCount())
      return;
    if (smoothly && Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB)
      smoothScroll(position, 0);
    else
      setSelectionFromTop(position, 0);
  }
  
  public void centerItem(int position, boolean smoothly) {
    //do not change to itemCount!
    if (position < 0 || adapter == null || position >= adapter.getCount())
      return;
    int y = ((viewHeight - bottomPadding - topPadding) >> 1) - (itemHeight >> 1);
    if (y < 0)
      y = 0;
    if (smoothly && Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB)
      smoothScroll(position, y);
    else
      setSelectionFromTop(position, y);
  }
  
  public View getViewForPosition(int position) {
    position -= getFirstVisiblePosition();
    if (position < 0 || position >= getChildCount())
      return null;
    return getChildAt(position);
  }
  
  public void setOnKeyDownObserver(OnBgListViewKeyDownObserver keyDownObserver) {
    this.keyDownObserver = keyDownObserver;
  }
  
  public void notifyMeWhenFirstAttached(OnAttachedObserver observer) {
    attachedObserver = observer;
    if (attached && measured && sized && attachedObserver != null) {
      notified = true;
      attachedObserver.onBgListViewAttached(this);
      attachedObserver = null;
    }
  }
  
  public void setEmptyListOnClickListener(OnClickListener listener) {
    emptyListClickListener = listener;
  }
  
  public void setCustomEmptyText(CharSequence text) {
    if (text == null) {
      emptyLayout = null;
    } else {
      UI.textPaint.setTextSize(UI._22sp);
      final int w = viewWidth;
      emptyLayout = new StaticLayout(text, UI.textPaint, (w < (UI._16dp << 1)) ? 0 : (w - (UI._16dp << 1)), Alignment.ALIGN_CENTER, 1, 0, false);
    }
  }
  
  @Override
  protected void onAttachedToWindow() {
    ignorePadding = true;
    super.onAttachedToWindow();
    attached = true;
    if (!notified && measured && sized && attachedObserver != null) {
      notified = true;
      attachedObserver.onBgListViewAttached(this);
      attachedObserver = null;
    }
    ignorePadding = false;
  }
  
  @Override
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    measured = true;
    if (!notified && attached && sized && attachedObserver != null) {
      notified = true;
      attachedObserver.onBgListViewAttached(this);
      attachedObserver = null;
    }
  }
  
  @Override
  protected void onSizeChanged(int w, int h, int oldw, int oldh) {
    super.onSizeChanged(w, h, oldw, oldh);
    if (w > 0 && h > 0) {
      viewWidth = w;
      viewHeight = h;
      if (!UI.scrollBarToTheLeft)
        //scrollBarLeft = w - (rightPadding + scrollBarWidth);
        scrollBarLeft = w - scrollBarWidth;
      sized = true;
      if (!notified && attached && measured && attachedObserver != null) {
        notified = true;
        attachedObserver.onBgListViewAttached(this);
        attachedObserver = null;
      }
      if (emptyLayout != null && emptyLayout.getWidth() != w)
        setCustomEmptyText(emptyLayout.getText());
      switch (scrollBarType) {
      case SCROLLBAR_LARGE:
        scrollBarTop = topPadding + UI._4dp;
        scrollBarBottom = h - bottomPadding - UI._4dp;
        updateScrollBarThumb();
        break;
      case SCROLLBAR_INDEXED:
        scrollBarTop = topPadding;
        scrollBarBottom = h - bottomPadding;
        updateScrollBarIndices(false);
        break;
      }
    }
  }
  
  public int getNewPosition(int position, int keyCode, boolean allowWrap) {
    int p;
    final int l = itemCount - 1;
    switch (keyCode) {
    case KeyEvent.KEYCODE_DPAD_UP:
      if (position > l || position < 0 || (allowWrap && position == 0))
        return l;
      return position - 1;
    case KeyEvent.KEYCODE_DPAD_DOWN:
      if ((allowWrap && position == l) || position > l || position < 0)
        return 0;
      return position + 1;
    case KeyEvent.KEYCODE_PAGE_UP:
      if (position > l || position < 0 || (allowWrap && position == 0))
        return l;
      p = getLastVisiblePosition() - getFirstVisiblePosition();
      if (p > 1)
        p = position - (p - 1);
      else
        p = position - 1;
      return ((p <= 0) ? 0 : p);
    case KeyEvent.KEYCODE_PAGE_DOWN:
      if ((allowWrap && position == l) || position > l || position < 0)
        return 0;
      p = getLastVisiblePosition() - getFirstVisiblePosition();
      if (p > 1)
        p = position + p - 1;
      else
        p = position + 1;
      return ((p >= l) ? l : p);
    case KeyEvent.KEYCODE_MOVE_HOME:
      return 0;
    case KeyEvent.KEYCODE_MOVE_END:
      return l;
    }
    return -1;
  }
  
  private void invalidateScrollBar() {
    invalidate(scrollBarLeft, scrollBarTop, scrollBarLeft + scrollBarWidth, scrollBarBottom);
  }
  
  private void cancelTracking() {
    if (tracking) {
      tracking = false;
      if (attached)
        super.onTouchEvent(MotionEvent.obtain(SystemClock.uptimeMillis(), SystemClock.uptimeMillis() + 10, MotionEvent.ACTION_CANCEL, 0, 0, 0));
      if (scrollBarType == SCROLLBAR_INDEXED)
        invalidate();
      else
        invalidateScrollBar();
    }
  }
  
  private void trackTouchEvent(int y) {
    final int count = adapter.getCount();
    if (adapter == null || count <= 0)
      return;
    final int sbh = (scrollBarBottom - scrollBarTop), vh = (viewHeight - bottomPadding - topPadding);
    y -= scrollBarThumbOffset + scrollBarTop;
    //int t, f;
    int f;
    if (y <= 0) {
      scrollBarThumbTop = scrollBarTop;
      //t = 0;
      f = 0;
    } else if (y >= (sbh - scrollBarThumbHeight)) {
      scrollBarThumbTop = sbh - scrollBarThumbHeight + scrollBarTop;
      //t = 0;
      f = count - 1;
    } else {
      scrollBarThumbTop = y + scrollBarTop;
      int t = (scrollBarThumbTop * (contentsHeight - vh)) / (sbh - scrollBarThumbHeight);
      f = t / itemHeight;
      if (f >= count)
        f = count - 1;
      //t = (f * itemHeight) - t;
    }
    invalidateScrollBar();
    //setSelectionFromTop(f, t);
    setSelectionFromTop(f, 0);
  }
  
  private void trackIndexedTouchEvent(int y) {
    if (scrollBarThumbHeight == 0 || sectionPositions == null)
      return;
    y = (y - scrollBarTop) / scrollBarThumbHeight;
    if (y < 0)
      y = 0;
    if (y >= sectionPositions.length)
      y = sectionPositions.length - 1;
    if (scrollBarThumbTop == y || y < 0)
      return;
    scrollBarThumbTop = y;
    y = sectionPositions[y];
    invalidateScrollBar();
    if (adapter != null && y >= 0 && y < adapter.getCount())
      setSelectionFromTop(y, 0);
  }
  
  @Override
  public boolean onTouchEvent(MotionEvent event) {
    switch (event.getAction()) {
    case MotionEvent.ACTION_DOWN:
      if (scrollBarThumbHeight == 0) break;
      final int x = (int)event.getX();
      if (x >= scrollBarLeft && x < (scrollBarLeft + scrollBarWidth)) {
        tracking = true;
        if (scrollState == SCROLL_STATE_FLING) {
          //simulate a simple 10ms tap, to stop the fling 
          super.onTouchEvent(event);
          super.onTouchEvent(MotionEvent.obtain(event.getDownTime(), event.getDownTime() + 10, MotionEvent.ACTION_UP, event.getX(), event.getY(), event.getMetaState()));
          scrollState = SCROLL_STATE_IDLE;
        }
        final int y = (int)event.getY();
        if (scrollBarType == SCROLLBAR_LARGE) {
          if (y < scrollBarThumbTop || y >= (scrollBarThumbTop + scrollBarThumbHeight))
            scrollBarThumbOffset = scrollBarThumbHeight >> 1;
          else
            scrollBarThumbOffset = y - scrollBarThumbTop;
          trackTouchEvent(y);
        } else {
          invalidate();
          scrollBarThumbTop = -1;
          trackIndexedTouchEvent(y);
        }
        if (getParent() != null)
          getParent().requestDisallowInterceptTouchEvent(true);
        playSoundEffect(SoundEffectConstants.CLICK);
        return true;
      }
      break;
    case MotionEvent.ACTION_MOVE:
      if (!tracking)
        break;
      if (scrollBarType == SCROLLBAR_LARGE)
        trackTouchEvent((int)event.getY());
      else
        trackIndexedTouchEvent((int)event.getY());
      return true;
    case MotionEvent.ACTION_UP:
      if (tracking) {
        tracking = false;
        if (scrollBarType == SCROLLBAR_LARGE)
          trackTouchEvent((int)event.getY());
        else
          invalidate();
        return true;
      } else if (emptyListClickListener != null && itemCount == 0) {
        playSoundEffect(SoundEffectConstants.CLICK);
        emptyListClickListener.onClick(this);
      }
      break;
    case MotionEvent.ACTION_CANCEL:
      if (tracking) {
        tracking = false;
        if (scrollBarType == SCROLLBAR_LARGE)
          invalidateScrollBar();
        else
          invalidate();
      }
      break;
    }
    return super.onTouchEvent(event);
  }
  
  private void updateScrollBarSectionForFirstPosition() {
    final int first = getFirstVisiblePosition();
    if (first <= 0 || sections == null) {
      scrollBarThumbTop = 0;
      return;
    }
    int s = 0, e = sections.length - 1, m = 0;
    while (s <= e) {
      m = ((e + s) >> 1);
      if (first == sectionPositions[m]) {
        scrollBarThumbTop = m;
        return;
      }
      else if (first < sectionPositions[m])
        e = m - 1;
      else
        s = m + 1;
    }
    if (first < sectionPositions[m])
      m--;
    if (m < 0)
      m = 0;
    else if (m >= sections.length)
      m = sections.length - 1;
    scrollBarThumbTop = m;
  }
  
  private void updateScrollBarThumb() {
    final int sbh = (scrollBarBottom - scrollBarTop);
    if (itemCount == 0 || sbh <= 0) {
      scrollBarThumbHeight = 0;
    } else {
      final View v = getChildAt(0);
      if (v == null) {
        scrollBarThumbHeight = 0;
        return;
      }
      final int vh = (viewHeight - bottomPadding - topPadding);
      contentsHeight = (itemCount * itemHeight);
      if (contentsHeight <= vh) {
        scrollBarThumbHeight = 0;
        return;
      }
      scrollBarThumbHeight = (sbh * vh) / contentsHeight;
      if (scrollBarThumbHeight < UI._8dp)
        scrollBarThumbHeight = UI._8dp;
      scrollBarThumbTop = scrollBarTop + (((sbh - scrollBarThumbHeight) * ((getFirstVisiblePosition() * itemHeight) - v.getTop())) / (contentsHeight - vh));
    }
  }
  
  private void updateScrollBarIndices(boolean updateEverything) {
    if (updateEverything) {
      if (adapter == null || !(adapter instanceof BaseList.BaseSectionIndexer)) {
        sections = null;
        sectionPositions = null;
      } else {
        final BaseList.BaseSectionIndexer a = (BaseList.BaseSectionIndexer)adapter;
        sections = a.getSectionStrings();
        sectionPositions = a.getSectionPositions();
        if (sections == null || sectionPositions == null || sections.length != sectionPositions.length || sections.length == 0) {
          sections = null;
          sectionPositions = null;
        }
      }
    }
    if (sections != null) {
      //let's reuse a few variables... ;)
      scrollBarThumbHeight = (scrollBarBottom - scrollBarTop) / sections.length;
      contentsHeight = scrollBarThumbHeight - (UI._1dp << 1);
      if (contentsHeight > (scrollBarWidth - UI._1dp))
        contentsHeight = (scrollBarWidth - UI._1dp);
      if (contentsHeight < UI._2dp)
        contentsHeight = UI._2dp;
      UI.textPaint.setTextSize(contentsHeight);
      final Paint.FontMetrics fm = UI.textPaint.getFontMetrics();
      final int box = (int)(fm.descent - fm.ascent + 0.5f);
      scrollBarThumbOffset = (scrollBarThumbHeight >> 1) - (box >> 1) + (box - (int)fm.descent);
    } else {
      scrollBarThumbHeight = 0;
      contentsHeight = 0;
      scrollBarThumbOffset = 0;
    }
    updateScrollBarSectionForFirstPosition();
  }
  
  @TargetApi(Build.VERSION_CODES.HONEYCOMB)
  private void setVerticalScrollBarPosition() {
    super.setVerticalScrollbarPosition(UI.scrollBarToTheLeft ? SCROLLBAR_POSITION_LEFT : SCROLLBAR_POSITION_RIGHT);
  }
  
  public void setScrollBarType(int scrollBarType) {
    cancelTracking();
    switch (scrollBarType) {
    case SCROLLBAR_LARGE:
      if (this.scrollBarType == SCROLLBAR_LARGE)
        return;
      sections = null;
      sectionPositions = null;
      ignorePadding = true;
      super.setVerticalScrollBarEnabled(false);
      super.setOnScrollListener(this);
      ignorePadding = false;
      this.scrollBarType = SCROLLBAR_LARGE;
      scrollBarTop = topPadding + UI._4dp;
      scrollBarBottom = viewHeight - bottomPadding - UI._4dp;
      scrollBarWidth = (UI.defaultControlSize >> 1);
      updateScrollBarThumb();
      break;
    case SCROLLBAR_INDEXED:
      if (this.scrollBarType == SCROLLBAR_INDEXED)
        return;
      ignorePadding = true;
      super.setVerticalScrollBarEnabled(false);
      super.setOnScrollListener(this);
      ignorePadding = false;
      this.scrollBarType = SCROLLBAR_INDEXED;
      scrollBarTop = topPadding;
      scrollBarBottom = viewHeight - bottomPadding;
      scrollBarWidth = (UI.defaultControlSize >> 1);
      updateScrollBarIndices(true);
      break;
    case SCROLLBAR_NONE:
      if (this.scrollBarType == SCROLLBAR_NONE)
        return;
      sections = null;
      sectionPositions = null;
      ignorePadding = true;
      super.setOnScrollListener(null);
      super.setVerticalScrollBarEnabled(false);
      ignorePadding = false;
      this.scrollBarType = SCROLLBAR_NONE;
      scrollBarWidth = 0;
      break;
    default:
      if (this.scrollBarType == SCROLLBAR_SYSTEM)
        return;
      sections = null;
      sectionPositions = null;
      ignorePadding = true;
      super.setOnScrollListener(null);
      super.setVerticalScrollBarEnabled(true);
      if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB)
        setVerticalScrollBarPosition();
      ignorePadding = false;
      this.scrollBarType = SCROLLBAR_SYSTEM;
      scrollBarWidth = 0;
      break;
    }
    ignorePadding = true;
    if (UI.scrollBarToTheLeft) {
      scrollBarLeft = 0;//leftPadding;
      super.setPadding(leftPadding + scrollBarWidth, topPadding, rightPadding, bottomPadding);
    } else {
      scrollBarLeft = viewWidth - scrollBarWidth;//(viewWidth - (rightPadding + scrollBarWidth));
      super.setPadding(leftPadding, topPadding, rightPadding + scrollBarWidth, bottomPadding);
    }
    ignorePadding = false;
  }
  
  @Override
  public void setPadding(int left, int top, int right, int bottom) {
    if (ignorePadding)
      return;
    /*switch (scrollBarType) {
    case SCROLLBAR_LARGE:
      scrollBarTop = top + UI._4dp;
      scrollBarBottom = viewHeight - bottom - UI._4dp;
      break;
    case SCROLLBAR_INDEXED:
      scrollBarTop = top;
      scrollBarBottom = viewHeight - bottom;
      break;
    }*/
    if (UI.scrollBarToTheLeft) {
      scrollBarLeft = 0;//left;
      super.setPadding((leftPadding = left) + scrollBarWidth, (topPadding = top), (rightPadding = right), (bottomPadding = bottom));
    } else {
      scrollBarLeft = viewWidth - scrollBarWidth;//viewWidth - (right + scrollBarWidth);
      super.setPadding((leftPadding = left), (topPadding = top), (rightPadding = right) + scrollBarWidth, (bottomPadding = bottom));
    }
  }
  
  private void defaultKeyDown(int keyCode) {
    if (adapter == null)
      return;
    final int s = getNewPosition(adapter.getSelection(), keyCode, true);
    if (s >= 0 && s < itemCount) {
      adapter.setSelection(s, true);
      if (s <= getFirstVisiblePosition() || s >= getLastVisiblePosition())
        centerItem(s, false);
    }
  }
  
  @Override
  public boolean onKeyDown(int keyCode, KeyEvent event) {
    if (isEnabled()) {
      switch (keyCode) {
      case KeyEvent.KEYCODE_DPAD_UP:
      case KeyEvent.KEYCODE_DPAD_DOWN:
        //change the key to make sure the focus goes
        //somewhere else when the list is empty, or when the
        //selection is not set to wrap around and it is at
        //the top/bottom of the list
        if (adapter == null || itemCount == 0) {
          keyCode = ((keyCode == KeyEvent.KEYCODE_DPAD_UP) ? KeyEvent.KEYCODE_DPAD_LEFT : KeyEvent.KEYCODE_DPAD_RIGHT);
        } else if (!UI.wrapAroundList) {
          if (keyCode == KeyEvent.KEYCODE_DPAD_UP) {
            if (adapter.getSelection() == 0)
              keyCode = ((keyCode == KeyEvent.KEYCODE_DPAD_UP) ? KeyEvent.KEYCODE_DPAD_LEFT : KeyEvent.KEYCODE_DPAD_RIGHT);
          } else if (adapter.getSelection() == (itemCount - 1)) {
            keyCode = ((keyCode == KeyEvent.KEYCODE_DPAD_UP) ? KeyEvent.KEYCODE_DPAD_LEFT : KeyEvent.KEYCODE_DPAD_RIGHT);
          }
        }
        break;
      case KeyEvent.KEYCODE_ENTER:
      case KeyEvent.KEYCODE_SPACE:
      case KeyEvent.KEYCODE_DPAD_CENTER:
        if (emptyListClickListener != null && itemCount == 0)
          emptyListClickListener.onClick(this);
        break;
      case KeyEvent.KEYCODE_DPAD_LEFT:
      case KeyEvent.KEYCODE_DPAD_RIGHT:
      case KeyEvent.KEYCODE_FORWARD_DEL:
      case KeyEvent.KEYCODE_PAGE_UP:
      case KeyEvent.KEYCODE_PAGE_DOWN:
      case KeyEvent.KEYCODE_MOVE_HOME:
      case KeyEvent.KEYCODE_MOVE_END:
        break;
      default:
        return super.onKeyDown(keyCode, event);
      }
      if (keyDownObserver == null || !keyDownObserver.onBgListViewKeyDown(this, keyCode, event))
        defaultKeyDown(keyCode);
      return true;
    } else {
      return super.onKeyDown(keyCode, event);
    }
  }
  
  /*@Override
  protected void dispatchDraw(Canvas canvas) {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
      super.dispatchDraw(canvas);
    } else {
      //LAME!!!!! There is a bug in API 10 and the padding
      //IS NOT properly accounted for and the children are not clipped!!!
      canvas.save();
      getDrawingRect(UI.rect);
      UI.rect.top += getPaddingTop();
      UI.rect.bottom -= getPaddingBottom();
      canvas.clipRect(UI.rect);
      super.dispatchDraw(canvas);
      canvas.restore();
    }
  }*/
  
  @SuppressWarnings("unchecked")
  @Override
  public void setAdapter(ListAdapter adapter) {
    this.adapter = (BaseList<? extends BaseItem>)adapter;
    itemHeight = ((adapter == null) ? UI.defaultControlSize : this.adapter.getViewHeight());
    cancelTracking();
    itemCount = ((adapter == null) ? 0 : adapter.getCount());
    switch (scrollBarType) {
    case SCROLLBAR_LARGE:
      updateScrollBarThumb();
      break;
    case SCROLLBAR_INDEXED:
      updateScrollBarIndices(true);
      break;
    }
    super.setAdapter(adapter);
  }
  
  @Override
  protected void handleDataChanged() {
    final int last = itemCount;
    itemCount = ((adapter == null) ? 0 : adapter.getCount());
    if (itemCount == 0 || last > itemCount)
      cancelTracking();
    switch (scrollBarType) {
    case SCROLLBAR_LARGE:
      updateScrollBarThumb();
      break;
    case SCROLLBAR_INDEXED:
      updateScrollBarIndices(true);
      break;
    }
    super.handleDataChanged();
  }
  
  @Override
  public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
    if (tracking)
      return;
    switch (scrollBarType) {
    case SCROLLBAR_LARGE:
      updateScrollBarThumb();
      break;
    case SCROLLBAR_INDEXED:
      updateScrollBarSectionForFirstPosition();
      break;
    }
  }
  
  @Override
  public void onScrollStateChanged(AbsListView view, int scrollState) {
    this.scrollState = scrollState;
  }
  
  @Override
  protected void dispatchDraw(Canvas canvas) {
    super.dispatchDraw(canvas);
    if (tracking && scrollBarType == SCROLLBAR_INDEXED && sections != null) {
      UI.textPaint.setColor(UI.color_text_highlight);
      UI.textPaint.setTextSize(contentsHeight);
      UI.textPaint.setTextAlign(Paint.Align.CENTER);
      final float l;
      if (UI.scrollBarToTheLeft) {
        UI.rect.left = scrollBarLeft;
        l = (float)(UI.rect.left + UI.defaultControlContentsSize + (scrollBarWidth >> 1));
      } else {
        UI.rect.left = scrollBarLeft - UI.defaultControlContentsSize;
        l = (float)(UI.rect.left + (scrollBarWidth >> 1));
      }
      UI.rect.right = UI.rect.left + UI.defaultControlContentsSize + scrollBarWidth;
      UI.rect.top = scrollBarTop;
      UI.rect.bottom = scrollBarBottom;
      UI.fillRect(canvas, UI.color_highlight);
      int i;
      for (i = 0; i < scrollBarThumbTop; i++) {
        canvas.drawText(sections[i], l, (float)(UI.rect.top + scrollBarThumbOffset), UI.textPaint);
        UI.rect.top += scrollBarThumbHeight;
      }
      UI.rect.bottom = UI.rect.top + scrollBarThumbHeight;
      UI.textPaint.setColor(UI.color_text_selected);
      UI.fillRect(canvas, UI.color_selected_pressed);
      UI.strokeRect(canvas, UI.color_selected_pressed_border, UI.strokeSize);
      canvas.drawText(sections[i], l, (float)(UI.rect.top + scrollBarThumbOffset), UI.textPaint);
      UI.textPaint.setColor(UI.color_text_highlight);
      UI.rect.top = UI.rect.bottom;
      i++;
      for (; i < sections.length; i++) {
        canvas.drawText(sections[i], l, (float)(UI.rect.top + scrollBarThumbOffset), UI.textPaint);
        UI.rect.top += scrollBarThumbHeight;
      }
      UI.textPaint.setTextAlign(Paint.Align.LEFT);      
    }
  }
  
  @Override
  public void onDraw(Canvas canvas) {
    //there is no need to call super.onDraw() here, as ListView does
    //not override this method... therefore, it does nothing!
    //super.onDraw(canvas);
    if (itemCount == 0) {
      if (emptyLayout != null) {
        final float x = (float)((viewWidth >> 1) - (emptyLayout.getWidth() >> 1));
        final float y = (float)((viewHeight >> 1) - (emptyLayout.getHeight() >> 1));
        canvas.translate(x, y);
        UI.textPaint.setColor(UI.color_text_disabled);
        UI.textPaint.setTextSize(UI._22sp);
        emptyLayout.draw(canvas);
        canvas.translate(-x, -y);
      } else {
        getDrawingRect(UI.rect);
        UI.drawEmptyListString(canvas);
      }
    } else {
      switch (scrollBarType) {
      case SCROLLBAR_INDEXED:
        if (sections != null) {
          if (!tracking) {
            UI.textPaint.setColor(UI.color_text_highlight);
            UI.textPaint.setTextSize(contentsHeight);
            UI.textPaint.setTextAlign(Paint.Align.CENTER);
            UI.rect.left = scrollBarLeft;
            UI.rect.right = scrollBarLeft + scrollBarWidth;
            UI.rect.top = scrollBarTop;
            UI.rect.bottom = scrollBarBottom;
            UI.fillRect(canvas, UI.color_highlight);
            final float l = (float)(scrollBarLeft + (scrollBarWidth >> 1));
            int i;
            for (i = 0; i < scrollBarThumbTop; i++) {
              canvas.drawText(sections[i], l, (float)(UI.rect.top + scrollBarThumbOffset), UI.textPaint);
              UI.rect.top += scrollBarThumbHeight;
            }
            UI.rect.bottom = UI.rect.top + scrollBarThumbHeight;
            UI.textPaint.setColor(UI.color_text_selected);
            UI.fillRect(canvas, UI.color_selected_pressed);
            UI.strokeRect(canvas, UI.color_selected_pressed_border, UI.strokeSize);
            canvas.drawText(sections[i], l, (float)(UI.rect.top + scrollBarThumbOffset), UI.textPaint);
            UI.textPaint.setColor(UI.color_text_highlight);
            UI.rect.top = UI.rect.bottom;
            i++;
            for (; i < sections.length; i++) {
              canvas.drawText(sections[i], l, (float)(UI.rect.top + scrollBarThumbOffset), UI.textPaint);
              UI.rect.top += scrollBarThumbHeight;
            }
            UI.textPaint.setTextAlign(Paint.Align.LEFT);      
          }
          break;
        }
      case SCROLLBAR_LARGE:
        UI.rect.left = scrollBarLeft + (scrollBarWidth >> 1) - (UI.strokeSize >> 1);
        UI.rect.right = UI.rect.left + UI.strokeSize;
        UI.rect.top = scrollBarTop + UI._4dp;
        UI.rect.bottom = scrollBarBottom - UI._4dp;
        UI.fillRect(canvas, UI.color_divider);
        if (scrollBarThumbHeight > 0) {
          UI.rect.left = scrollBarLeft + UI._4dp;
          UI.rect.top = scrollBarThumbTop;
          UI.rect.right = scrollBarLeft + scrollBarWidth - UI._4dp;
          UI.rect.bottom = UI.rect.top + scrollBarThumbHeight;
          if (tracking) {
            UI.fillRect(canvas, UI.color_selected_pressed);
            UI.strokeRect(canvas, UI.color_selected_pressed_border, UI.strokeSize);
          } else {
            UI.fillRect(canvas, UI.color_divider);
          }
        }
        break;
      }
    }
  }
  
  @Override
  public void onWindowFocusChanged(boolean hasWindowFocus) {
    cancelTracking();
    super.onWindowFocusChanged(hasWindowFocus);
  }
  
  @Override
  protected void onDetachedFromWindow() {
    attachedObserver = null;
    keyDownObserver = null;
    emptyListClickListener = null;
    emptyLayout = null;
    sections = null;
    sectionPositions = null;
    setAdapter(null);
    super.onDetachedFromWindow();
  }
}




Java Source Code List

br.com.carlosrafaelgn.fplay.ActivityAbout.java
br.com.carlosrafaelgn.fplay.ActivityBrowser2.java
br.com.carlosrafaelgn.fplay.ActivityBrowserRadio.java
br.com.carlosrafaelgn.fplay.ActivityBrowserView.java
br.com.carlosrafaelgn.fplay.ActivityEffects.java
br.com.carlosrafaelgn.fplay.ActivityFileSelection.java
br.com.carlosrafaelgn.fplay.ActivityItemView.java
br.com.carlosrafaelgn.fplay.ActivityMain.java
br.com.carlosrafaelgn.fplay.ActivitySettings.java
br.com.carlosrafaelgn.fplay.ExternalReceiver.java
br.com.carlosrafaelgn.fplay.WidgetMain.java
br.com.carlosrafaelgn.fplay.activity.ActivityHost.java
br.com.carlosrafaelgn.fplay.activity.ActivityVisualizer.java
br.com.carlosrafaelgn.fplay.activity.ClientActivity.java
br.com.carlosrafaelgn.fplay.activity.MainHandler.java
br.com.carlosrafaelgn.fplay.list.AlbumArtFetcher.java
br.com.carlosrafaelgn.fplay.list.BaseItem.java
br.com.carlosrafaelgn.fplay.list.BaseList.java
br.com.carlosrafaelgn.fplay.list.FileFetcher.java
br.com.carlosrafaelgn.fplay.list.FileList.java
br.com.carlosrafaelgn.fplay.list.FileSt.java
br.com.carlosrafaelgn.fplay.list.RadioStationList.java
br.com.carlosrafaelgn.fplay.list.RadioStation.java
br.com.carlosrafaelgn.fplay.list.SongList.java
br.com.carlosrafaelgn.fplay.list.Song.java
br.com.carlosrafaelgn.fplay.playback.BassBoost.java
br.com.carlosrafaelgn.fplay.playback.Equalizer.java
br.com.carlosrafaelgn.fplay.playback.MetadataExtractor.java
br.com.carlosrafaelgn.fplay.playback.Player.java
br.com.carlosrafaelgn.fplay.playback.PresetReverb.java
br.com.carlosrafaelgn.fplay.playback.Virtualizer.java
br.com.carlosrafaelgn.fplay.ui.BgButton.java
br.com.carlosrafaelgn.fplay.ui.BgColorStateList.java
br.com.carlosrafaelgn.fplay.ui.BgListView.java
br.com.carlosrafaelgn.fplay.ui.BgSeekBar.java
br.com.carlosrafaelgn.fplay.ui.BgTextView.java
br.com.carlosrafaelgn.fplay.ui.ColorPickerView.java
br.com.carlosrafaelgn.fplay.ui.CustomContextMenu.java
br.com.carlosrafaelgn.fplay.ui.FileView.java
br.com.carlosrafaelgn.fplay.ui.InterceptableLayout.java
br.com.carlosrafaelgn.fplay.ui.ObservableScrollView.java
br.com.carlosrafaelgn.fplay.ui.RadioStationView.java
br.com.carlosrafaelgn.fplay.ui.SettingView.java
br.com.carlosrafaelgn.fplay.ui.SongAddingMonitor.java
br.com.carlosrafaelgn.fplay.ui.SongView.java
br.com.carlosrafaelgn.fplay.ui.UI.java
br.com.carlosrafaelgn.fplay.ui.drawable.BorderDrawable.java
br.com.carlosrafaelgn.fplay.ui.drawable.ColorDrawable.java
br.com.carlosrafaelgn.fplay.ui.drawable.NullDrawable.java
br.com.carlosrafaelgn.fplay.ui.drawable.StateDrawable.java
br.com.carlosrafaelgn.fplay.ui.drawable.TextIconDrawable.java
br.com.carlosrafaelgn.fplay.util.ArraySorter.java
br.com.carlosrafaelgn.fplay.util.BitmapLruCache.java
br.com.carlosrafaelgn.fplay.util.BluetoothConnectionManager.java
br.com.carlosrafaelgn.fplay.util.ColorUtils.java
br.com.carlosrafaelgn.fplay.util.ReleasableBitmapWrapper.java
br.com.carlosrafaelgn.fplay.util.SafeURLSpan.java
br.com.carlosrafaelgn.fplay.util.SerializableMap.java
br.com.carlosrafaelgn.fplay.util.Serializer.java
br.com.carlosrafaelgn.fplay.util.SlimLock.java
br.com.carlosrafaelgn.fplay.util.Timer.java
br.com.carlosrafaelgn.fplay.visualizer.BluetoothVisualizerJni.java
br.com.carlosrafaelgn.fplay.visualizer.OpenGLVisualizerJni.java
br.com.carlosrafaelgn.fplay.visualizer.SimpleVisualizerJni.java
br.com.carlosrafaelgn.fplay.visualizer.VisualizerView.java
br.com.carlosrafaelgn.fplay.visualizer.Visualizer.java