Removed Some animations and palette

This commit is contained in:
Karim Abou Zeid 2015-03-12 18:14:08 +01:00
commit af21f191dd
20 changed files with 343 additions and 120 deletions

View file

@ -33,7 +33,7 @@ public class AlbumViewGridAdapter extends ArrayAdapter<Album> {
public AlbumViewGridAdapter(Context context, List<Album> objects) {
super(context, R.layout.album_tile, objects);
this.context = context;
usePalette = true;
usePalette = false;
}
@Override
@ -62,7 +62,6 @@ public class AlbumViewGridAdapter extends ArrayAdapter<Album> {
Picasso.with(context)
.load(MusicUtil.getAlbumArtUri(album.id))
.placeholder(R.drawable.default_album_art)
.error(R.drawable.default_album_art)
.into(viewHolder.image, new Callback.EmptyCallback(){
@Override
public void onSuccess() {