Updated libraries.
This commit is contained in:
parent
034b8d307e
commit
2b38324d03
3 changed files with 23 additions and 13 deletions
|
|
@ -102,7 +102,7 @@ dependencies {
|
|||
transitive = true
|
||||
}
|
||||
|
||||
compile('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.8.6@aar') {
|
||||
compile('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.9.1@aar') {
|
||||
transitive = true
|
||||
}
|
||||
|
||||
|
|
@ -121,17 +121,17 @@ dependencies {
|
|||
transitive = true
|
||||
}
|
||||
|
||||
compile 'com.android.support:support-v4:23.3.0'
|
||||
compile 'com.android.support:support-v13:23.3.0'
|
||||
compile 'com.android.support:appcompat-v7:23.3.0'
|
||||
compile 'com.android.support:recyclerview-v7:23.3.0'
|
||||
compile 'com.android.support:gridlayout-v7:23.3.0'
|
||||
compile 'com.android.support:cardview-v7:23.3.0'
|
||||
compile 'com.android.support:palette-v7:23.3.0'
|
||||
compile 'com.android.support:design:23.3.0'
|
||||
compile 'com.android.support:support-annotations:23.3.0'
|
||||
compile 'com.android.support:percent:23.3.0'
|
||||
compile 'com.android.support:preference-v7:23.3.0'
|
||||
compile 'com.android.support:support-v4:23.4.0'
|
||||
compile 'com.android.support:support-v13:23.4.0'
|
||||
compile 'com.android.support:appcompat-v7:23.4.0'
|
||||
compile 'com.android.support:recyclerview-v7:23.4.0'
|
||||
compile 'com.android.support:gridlayout-v7:23.4.0'
|
||||
compile 'com.android.support:cardview-v7:23.4.0'
|
||||
compile 'com.android.support:palette-v7:23.4.0'
|
||||
compile 'com.android.support:design:23.4.0'
|
||||
compile 'com.android.support:support-annotations:23.4.0'
|
||||
compile 'com.android.support:percent:23.4.0'
|
||||
compile 'com.android.support:preference-v7:23.4.0'
|
||||
compile 'com.github.ksoichiro:android-observablescrollview:1.6.0'
|
||||
compile 'com.github.kabouzeid:SeekArc:1.2-kmod'
|
||||
compile 'com.github.kabouzeid:AndroidSlidingUpPanel:3.3.0-kmod3'
|
||||
|
|
@ -140,7 +140,7 @@ dependencies {
|
|||
compile 'com.jakewharton:butterknife:7.0.1'
|
||||
//noinspection GradleDynamicVersion
|
||||
compile 'com.anjlab.android.iab.v3:library:1.0.+'
|
||||
compile 'de.psdev.licensesdialog:licensesdialog:1.8.0'
|
||||
compile 'de.psdev.licensesdialog:licensesdialog:1.8.1'
|
||||
compile 'com.github.bumptech.glide:glide:3.7.0'
|
||||
compile 'com.github.bumptech.glide:okhttp3-integration:1.4.0@aar'
|
||||
compile 'com.github.kabouzeid:RecyclerView-FastScroll:1.8-kmod'
|
||||
|
|
|
|||
|
|
@ -110,6 +110,11 @@ public class PlayingQueueAdapter extends SongAdapter implements DraggableItemAda
|
|||
MusicPlayerRemote.moveSong(fromPosition, toPosition);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onCheckCanDrop(int draggingPosition, int dropPosition) {
|
||||
return true;
|
||||
}
|
||||
|
||||
public class ViewHolder extends SongAdapter.ViewHolder implements DraggableItemViewHolder {
|
||||
@DraggableItemStateFlags
|
||||
private int mDragStateFlags;
|
||||
|
|
|
|||
|
|
@ -75,6 +75,11 @@ public class PlaylistSongAdapter extends SongAdapter implements DraggableItemAda
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onCheckCanDrop(int draggingPosition, int dropPosition) {
|
||||
return true;
|
||||
}
|
||||
|
||||
public interface OnMoveItemListener {
|
||||
void onMoveItem(int fromPosition, int toPosition);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue