Android Open Source - FPlayAndroid Song List






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   w  w w . jav 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.list;

import android.content.Context;
import android.os.Message;
import android.view.View;
import android.view.ViewGroup;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.util.Arrays;
import java.util.Iterator;
import java.util.Random;

import br.com.carlosrafaelgn.fplay.activity.MainHandler;
import br.com.carlosrafaelgn.fplay.playback.Player;
import br.com.carlosrafaelgn.fplay.ui.SongView;
import br.com.carlosrafaelgn.fplay.util.ArraySorter;
import br.com.carlosrafaelgn.fplay.util.ArraySorter.Comparer;
import br.com.carlosrafaelgn.fplay.util.Serializer;

//
//SINCE ALL CALLS MADE BY Player ARE MADE ON THE MAIN THREAD, THERE IS NO
//NEED TO SYNCHRONIZE THE ACCESS TO THE ITEMS
//
public final class SongList extends BaseList<Song> implements FileFetcher.Listener, Comparer<Song> {
  public static final int SORT_BY_TITLE = 0;
  public static final int SORT_BY_ARTIST = 1;
  public static final int SORT_BY_ALBUM = 2;
  public static final int HOW_CURRENT = -4;
  public static final int HOW_PREVIOUS = -3;
  public static final int HOW_NEXT_MANUAL = -2;
  public static final int HOW_NEXT_AUTO = -1;
  private volatile int adding;
  private int currentShuffledItemIndex, shuffledItemsAlreadyPlayed, indexOfPreviouslyDeletedCurrentShuffledItem, sortMode;
  private boolean repeatOne;
  public boolean selecting, moving;
  private Song[] shuffledList;
  private static final SongList theSongList = new SongList();
  
  private SongList() {
    super(Song.class);
    this.adding = 0;
    this.indexOfPreviouslyDeletedCurrentShuffledItem = -1;
  }
  
  public static SongList getInstance() {
    return theSongList;
  }
  
  //--------------------------------------------------------------------------------------------
  //These six methods are the only ones that can be called from any thread (all the others must be called from the main thread)
  public void startDeserializing(final Context context, final String path, final boolean entireListBeingLoaded, final boolean append, final boolean play) {
    try {
      addingStarted();
      (new Thread("List Deserializer Thread") {
        private boolean done;
        private int current;
        private Song[] songs;
        private Throwable ex;
        @Override
        public void run() {
          if (done) {
            if (songs == null)
              songs = new Song[0];
            deserializationEnded(songs, current, entireListBeingLoaded, append, play, ex);
            songs = null;
            ex = null;
          } else {
            FileInputStream fs = null;
            BufferedInputStream bs = null;
            try {
              fs = context.openFileInput((path == null) ? "_List" : path);
              bs = new BufferedInputStream(fs, 4096);
              current = Serializer.deserializeInt(bs);
              final int version = Serializer.deserializeInt(bs);
              final int count = Serializer.deserializeInt(bs);
              if (version == 0x0100 && count > 0) {
                songs = new Song[count];
                for (int i = 0; i < count; i++)
                  songs[i] = Song.deserialize(bs);
              }
              done = true;
              addingEnded();
              MainHandler.postToMainThread(this);
            } catch (Throwable ex) {
              songs = null;
              done = true;
              if (!(ex instanceof FileNotFoundException))
                this.ex = ex;
              addingEnded();
              MainHandler.postToMainThread(this);
            } finally {
              try {
                if (bs != null)
                  bs.close();
              } catch (Throwable ex) {
              }
              try {
                if (fs != null)
                  fs.close();
              } catch (Throwable ex) {
              }
            }
          }
        }
      }).start();
    } catch (Throwable ex) {
      addingEnded();
    }
  }
  
  public void addingStarted() {
    synchronized (sync) {
      adding++;
    }
  }
  
  public void addingEnded() {
    synchronized (sync) {
      adding = ((adding <= 1) ? 0 : (adding - 1));
    }
  }
  
  public boolean isAdding() {
    return (adding > 0);
  }
  
  @Override
  public void onFilesFetched(FileFetcher fetcher, final Throwable e) {
    if (e != null) {
      addingEnded();
      if (Player.getState() == Player.STATE_TERMINATED || Player.getState() == Player.STATE_TERMINATING)
        return;
      MainHandler.toast(e);
    } else {
      addFiles(fetcher.files, null, fetcher.count, fetcher.playAfterFetching, true, false);
    }
  }
  
  public void addFiles(FileSt[] files, Iterator<FileSt> iterator, int count, boolean play, boolean isAddingFolder, boolean addAsURL) {
    if (((files == null || files.length == 0) && (iterator == null)) || count <= 0) {
      addingEnded();
      return;
    }
    if (Player.getState() == Player.STATE_TERMINATED || Player.getState() == Player.STATE_TERMINATING) {
      addingEnded();
      return;
    }
    if (files != null && count > files.length)
      count = files.length;
    class Closure implements MainHandler.Callback {
      public final Song[] songs;
      private int idx, positionToSelect;
      private boolean firstTime;
      private final boolean clearList, playAfterwards;
      Closure(int count, boolean clearList, boolean playAfterwards) {
        songs = new Song[count];
        idx = 0;
        firstTime = true;
        this.clearList = clearList;
        this.playAfterwards = playAfterwards;
      }
      @Override
      public boolean handleMessage(Message msg) {
        if (Player.getState() == Player.STATE_TERMINATED || Player.getState() == Player.STATE_TERMINATING)
          return true;
        if (firstTime) {
          if (clearList)
            clear();
          positionToSelect = getCount();
        }
        int localCount = msg.what;
        if (localCount > songs.length)
          localCount = songs.length;
        if (idx < localCount) {
          add(-1, songs, idx, localCount - idx);
          idx = localCount;
        }
        if (firstTime) {
          firstTime = false;
          Player.setSelectionAfterAdding(positionToSelect);
          if (playAfterwards)
            Player.play(positionToSelect);
        }
        return true;
      }
    }
    if (count > 0) {
      final Closure c = new Closure(count, play && isAddingFolder && Player.clearListWhenPlayingFolders, play);
      int f = 0;
      if (addAsURL) {
        if (files != null) {
          for (int i = 0; i < count; i++) {
            if (!files[i].isDirectory) {
              c.songs[f] = new Song(files[i].path, files[i].name);
              f++;
              if ((f & 3) == 1) {
                if (Player.getState() == Player.STATE_TERMINATED || Player.getState() == Player.STATE_TERMINATING)
                  break;
                MainHandler.sendMessage(c, f);
              }
            }
          }
        } else {
          while (iterator.hasNext()) {
            final FileSt file = iterator.next();
            if (!file.isDirectory) {
              c.songs[f] = new Song(file.path, file.name);
              f++;
              if ((f & 3) == 1) {
                if (Player.getState() == Player.STATE_TERMINATED || Player.getState() == Player.STATE_TERMINATING)
                  break;
                MainHandler.sendMessage(c, f);
              }
            }
          }
        }
      } else {
        final byte[][] tmpPtr = new byte[][] { new byte[256] };
        if (files != null) {
          for (int i = 0; i < count; i++) {
            if (!files[i].isDirectory) {
              c.songs[f] = new Song(files[i], tmpPtr);
              f++;
              if ((f & 3) == 1) {
                if (Player.getState() == Player.STATE_TERMINATED || Player.getState() == Player.STATE_TERMINATING)
                  break;
                MainHandler.sendMessage(c, f);
              }
            }
          }
        } else {
          while (iterator.hasNext()) {
            final FileSt file = iterator.next();
            if (!file.isDirectory) {
              c.songs[f] = new Song(file, tmpPtr);
              f++;
              if ((f & 3) == 1) {
                if (Player.getState() == Player.STATE_TERMINATED || Player.getState() == Player.STATE_TERMINATING)
                  break;
                MainHandler.sendMessage(c, f);
              }
            }
          }
        }
      }
      if (Player.getState() != Player.STATE_TERMINATED && Player.getState() != Player.STATE_TERMINATING)
        MainHandler.sendMessage(c, f);
    }
    addingEnded();
  }
  
  //--------------------------------------------------------------------------------------------
  
  private void fullSerialization(Context context, String path) throws IOException {
    FileOutputStream fs = null;
    BufferedOutputStream bs = null;
    try {
      fs = context.openFileOutput((path == null) ? "_List" : path, 0);
      bs = new BufferedOutputStream(fs, 4096);
      Serializer.serializeInt(bs, current);
      Serializer.serializeInt(bs, 0x0100);
      Serializer.serializeInt(bs, count);
      for (int i = 0; i < count; i++)
        items[i].serialize(bs);
      bs.flush();
    } finally {
      try {
        if (bs != null)
          bs.close();
      } catch (Throwable ex) {
      }
      try {
        if (fs != null)
          fs.close();
      } catch (Throwable ex) {
      }
    }
  }
  
  public boolean serialize(Context context, String path) {
    RandomAccessFile rf = null;
    try {
      if (modificationVersion > 1 || path != null) {
        fullSerialization(context, path);
      } else {
        try {
          final File f = context.getFileStreamPath("_List");
          rf = new RandomAccessFile(f, "rw");
          rf.seek(0);
          final byte[] buf = new byte[4];
          Serializer.serializeInt(buf, 0, current);
          rf.write(buf);
        } catch (Throwable ex) {
          try {
            if (rf != null)
              rf.close();
          } catch (Throwable ex2) {
          }
          rf = null;
          fullSerialization(context, path);
        }
      }
    } catch (Throwable ex) {
      return false;
    } finally {
      try {
        if (rf != null)
          rf.close();
      } catch (Throwable ex) {
      }
    }
    if (path == null)
      modificationVersion = 1;
    return true;
  }
  
  private void deserializationEnded(Song[] songs, int current, boolean entireListBeingLoaded, boolean append, boolean play, Throwable ex) {
    final int originalCount = count;
    int positionToSelect = -1;
    if (ex == null) {
      if (entireListBeingLoaded) {
        if (current >= 0)
          positionToSelect = originalCount + current;
      } else if (songs.length > 0) {
        if (append) {
          positionToSelect = originalCount;
        } else {
          positionToSelect = 0;
          clear();
        }
      }
      if (songs.length == 0)
        modificationVersion++; //increment here, since add() does not increment when count is 0
      else
        add(-1, songs, 0, songs.length);
      if (positionToSelect >= this.count) {
        positionToSelect = -1;
      } else if (positionToSelect >= 0) {
        if (entireListBeingLoaded || play) {
          this.current = positionToSelect;
          this.firstSel = positionToSelect;
          this.lastSel = positionToSelect;
          this.originalSel = positionToSelect;
        }
        if (listObserver != null)
          listObserver.centerItem(positionToSelect, false);
      }
    }
    Player.onSongListDeserialized((positionToSelect >= 0) ? items[positionToSelect] : null, ((play && positionToSelect >= 0) ? positionToSelect : -1), positionToSelect, ex);
  }
  
  private Song getRandomSongAndSetCurrent(int how) {
    if (shuffledItemsAlreadyPlayed >= count)
      setRandomMode(true);
    int i;
    Song s = null;
    if (how == HOW_CURRENT) {
      how = ((indexOfPreviouslyDeletedCurrentShuffledItem >= 0) ? indexOfPreviouslyDeletedCurrentShuffledItem : currentShuffledItemIndex);
      if (how < 0) {
        how = current;
        if (how < 0 || how >= count) {
          how = 0;
        } else {
          s = items[how];
          for (i = count - 1; i >= 0; i--) {
            if (shuffledList[i] == s) {
              current = how;
              currentShuffledItemIndex = i;
              break;
            }
          }
        }
      } else if (how >= count) {
        how = count - 1;
      }
    } else if (how == HOW_PREVIOUS) {
      how = ((indexOfPreviouslyDeletedCurrentShuffledItem >= 0) ? indexOfPreviouslyDeletedCurrentShuffledItem : currentShuffledItemIndex) - 1;
      if (how < 0 || how >= count)
        how = count - 1;
    } else if (how == HOW_NEXT_AUTO || how == HOW_NEXT_MANUAL) {
      how = ((indexOfPreviouslyDeletedCurrentShuffledItem >= 0) ? indexOfPreviouslyDeletedCurrentShuffledItem : (currentShuffledItemIndex + 1));
      if (how < 0 || how >= count)
        how = 0;
    } else if (how >= 0 && how < count) {
      s = items[how];
      for (i = count - 1; i >= 0; i--) {
        if (shuffledList[i] == s) {
          current = how;
          currentShuffledItemIndex = i;
          break;
        }
      }
    }
    indexOfPreviouslyDeletedCurrentItem = -1;
    indexOfPreviouslyDeletedCurrentShuffledItem = -1;
    if (how < 0 || how >= count)
      return null;
    if (s == null) {
      s = shuffledList[how];
      for (i = count - 1; i >= 0; i--) {
        if (items[i] == s) {
          current = i;
          currentShuffledItemIndex = how;
          break;
        }
      }
    }
    if (!s.alreadyPlayed) {
      s.alreadyPlayed = true;
      shuffledItemsAlreadyPlayed++;
    }
    s.possibleNextSong = null;
    if (!selecting && !moving) {
      firstSel = current;
      lastSel = current;
      originalSel = current;
    }
    notifyDataSetChanged(-1, SELECTION_CHANGED);
    return s;
  }
  
  public Song getSongAndSetCurrent(int how) {
    if (shuffledList != null)
      return getRandomSongAndSetCurrent(how);
    if (how == HOW_CURRENT) {
      how = ((indexOfPreviouslyDeletedCurrentItem >= 0) ? indexOfPreviouslyDeletedCurrentItem : current);
      if (how < 0)
        how = 0;
      else if (how >= count)
        how = count - 1;
    } else if (how == HOW_PREVIOUS) {
      how = ((indexOfPreviouslyDeletedCurrentItem >= 0) ? indexOfPreviouslyDeletedCurrentItem : current) - 1;
      if (how < 0 || how >= count)
        how = count - 1;
    } else if (how == HOW_NEXT_AUTO || how == HOW_NEXT_MANUAL) {
      if (repeatOne && how == HOW_NEXT_AUTO)
        how = ((indexOfPreviouslyDeletedCurrentItem >= 0) ? indexOfPreviouslyDeletedCurrentItem : current);
      else
        how = ((indexOfPreviouslyDeletedCurrentItem >= 0) ? indexOfPreviouslyDeletedCurrentItem : (current + 1));
      if (how < 0 || how >= count)
        how = 0;
    }
    indexOfPreviouslyDeletedCurrentItem = -1;
    indexOfPreviouslyDeletedCurrentShuffledItem = -1;
    if (how < 0 || how >= count)
      return null;
    current = how;
    final Song s = items[how];
    s.possibleNextSong = (repeatOne ? null : items[((how == (count - 1)) ? 0 : (how + 1))]);
    if (!selecting && !moving) {
      firstSel = current;
      lastSel = current;
      originalSel = current;
    }
    notifyDataSetChanged(-1, SELECTION_CHANGED);
    return s;
  }
  
  private void setShuffledCapacity(int capacity) {
    if (capacity >= count) {
      if (shuffledList == null)
        shuffledList = new Song[capacity + LIST_DELTA];
      else if (capacity > shuffledList.length || capacity <= (shuffledList.length - (2 * LIST_DELTA)))
        shuffledList = Arrays.copyOf(shuffledList, capacity + LIST_DELTA);
    }
  }
  
  public boolean isRepeatingOne() {
    return repeatOne;
  }

  public void setRepeatingOne(boolean repeatOne) {
    this.repeatOne = repeatOne;
    if (repeatOne)
      setRandomMode(false);
  }

  public boolean isInRandomMode() {
    return (shuffledList != null);
  }

  public void setRandomMode(boolean randomMode) {
    if ((shuffledList != null) == randomMode && !randomMode)
      return;
    int i;
    if (!randomMode) {
      if (shuffledList != null) {
        for (i = count - 1; i >= 0; i--)
          shuffledList[i] = null;
        shuffledList = null;
      }
    } else {
      repeatOne = false;
      setShuffledCapacity(count);
      for (i = count - 1; i >= 0; i--) {
        final Song s = items[i];
        s.alreadyPlayed = false;
        shuffledList[i] = s;
      }
      final Random r = new Random();
      for (i = (count - 1) >> 1; i >= 0; i--) {
        final int a = r.nextInt(count);
        final int b = r.nextInt(count);
        final Song s = shuffledList[a];
        shuffledList[a] = shuffledList[b];
        shuffledList[b] = s;
      }
    }
    currentShuffledItemIndex = -1;
    shuffledItemsAlreadyPlayed = 0;
  }
  
  public void updateExtraInfo() {
    //synchronized (sync) {
      //don't mess up with modificationVersion as it is not affected by this operation
      for (int i = count - 1; i >= 0; i--)
        items[i].updateExtraInfo();
      //don't mess up with suffling as it is not affected by this operation
    //}
    notifyCheckedChanged();
  }
  
  public void sort(int mode) {
    //synchronized (sync) {
      sortMode = mode;
      modificationVersion++;
      final Song s = ((current >= 0 && current < count) ? items[current] : null);
      ArraySorter.sort(items, 0, count, this);
      current = -1;
      firstSel = -1;
      lastSel = -1;
      originalSel = -1;
      if (s != null) {
        for (int i = count - 1; i >= 0; i--) {
          if (items[i] == s) {
            current = i;
            firstSel = i;
            lastSel = i;
            originalSel = i;
            break;
          }
        }
      }
      //don't mess up with suffling as it is not affected by this sorting
    //}
    notifyDataSetChanged(current, CONTENT_MOVED);
  }
  
  @Override
  public int compare(Song a, Song b) {
    int r;
    switch (sortMode) {
    case SORT_BY_ALBUM:
      r = a.album.compareToIgnoreCase(b.album);
      if (r == 0)
        r = a.track - b.track;
      if (r == 0)
        return a.title.compareToIgnoreCase(b.title);
      return r;
    case SORT_BY_ARTIST:
      r = a.artist.compareToIgnoreCase(b.artist);
      if (r == 0)
        r = a.album.compareToIgnoreCase(b.album);
      if (r == 0)
        r = a.track - b.track;
      if (r == 0)
        return a.title.compareToIgnoreCase(b.title);
      return r;
    }
    r = a.title.compareToIgnoreCase(b.title);
    if (r == 0)
      return a.track - b.track;
    return r;
  }
  
  @Override
  protected void addingItems(int position, int count) {
    if (shuffledList == null)
      return;
    setShuffledCapacity(this.count);
    final int initial = this.count - count;
    System.arraycopy(items, position, shuffledList, initial, count);
    final Random r = new Random();
    for (int i = initial + ((count - 1) >> 1); i >= initial; i--) {
      final int a = initial + r.nextInt(count);
      final int b = initial + r.nextInt(count);
      final Song s = shuffledList[a];
      shuffledList[a] = shuffledList[b];
      shuffledList[b] = s;
    }
  }
  
  @Override
  protected void removingItems(int position, int count) {
    if (shuffledList == null)
      return;
    int shuffledCount = this.count;
    count += position;
    while (position < count) {
      final Song s = items[position];
      for (int i = shuffledCount - 1; i >= 0; i--) {
        if (shuffledList[i] == s) {
          shuffledCount--;
          if (indexOfPreviouslyDeletedCurrentShuffledItem >= 0) {
            if (indexOfPreviouslyDeletedCurrentShuffledItem == i)
              indexOfPreviouslyDeletedCurrentShuffledItem = i;
            else if (indexOfPreviouslyDeletedCurrentShuffledItem > i)
              indexOfPreviouslyDeletedCurrentShuffledItem--;
            if (indexOfPreviouslyDeletedCurrentShuffledItem >= shuffledCount)
              indexOfPreviouslyDeletedCurrentShuffledItem = -1;
          }
          if (currentShuffledItemIndex == i) {
            indexOfPreviouslyDeletedCurrentShuffledItem = i;
            currentShuffledItemIndex = -1;
          } else if (currentShuffledItemIndex > i) {
            currentShuffledItemIndex--;
          }
          if (currentShuffledItemIndex >= shuffledCount)
            currentShuffledItemIndex = -1;
          System.arraycopy(shuffledList, i + 1, shuffledList, i, shuffledCount - i);
          shuffledList[shuffledCount] = null;
          if (s.alreadyPlayed)
            shuffledItemsAlreadyPlayed--;
          break;
        }
      }
      position++;
    }
  }
  
  @Override
  protected void clearingItems() {
    if (shuffledList == null)
      return;
    for (int i = count - 1; i >= 0; i--)
      shuffledList[i] = null;
    currentShuffledItemIndex = -1;
    shuffledItemsAlreadyPlayed = 0;
    indexOfPreviouslyDeletedCurrentShuffledItem = -1;
  }
  
  @Override
  protected void notifyDataSetChanged(int gotoPosition, int whatHappened) {
    super.notifyDataSetChanged(gotoPosition, whatHappened);
    if (whatHappened == LIST_CLEARED) {
      Player.listCleared();
    } else if (whatHappened != SELECTION_CHANGED && shuffledList == null && current >= 0 && current < count) {
      int n = current + 1;
      if (n < 0 || n >= count)
        n = 0;
      if (n < count)
        Player.nextMayHaveChanged(items[n]);
    }
  }
  
  @Override
  public View getView(int position, View convertView, ViewGroup parent) {
    final SongView view = ((convertView != null) ? (SongView)convertView : new SongView(Player.getService()));
    view.setItemState(items[position], position, getItemState(position));
    return view;
  }
  
  @Override
  public int getViewHeight() {
    return SongView.getViewHeight();
  }
}




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