Merge branch '2.0' of https://git.oschina.net/dreamhua/GH-ASSISTv1.45 into 2.0
Conflicts: app/src/main/java/com/gh/gamecenter/GameDetailsActivity.java
This commit is contained in:
@ -112,7 +112,10 @@ public class DownloadDialog {
|
||||
|
||||
if (position - 1 < adapterMap.size()) {
|
||||
adapterMap.get(position - 1).notifyItemChanged(location % (row * column));
|
||||
if (collectionAdapterMap != null && collectionAdapterMap.size() >= position - 1 && collectionAdapterMap.size() >= 1){
|
||||
}
|
||||
|
||||
if (collectionAdapterMap != null && position - 1 < collectionAdapterMap.size()){
|
||||
if ( collectionAdapterMap.size() >= position - 1 && collectionAdapterMap.size() >= 1){
|
||||
collectionAdapterMap.get(position - 1).notifyItemChanged(location % (row * column));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user