Skip to content

Commit

Permalink
[pre-release] 5.0.0-b7
Browse files Browse the repository at this point in the history
  • Loading branch information
davideas committed Jun 20, 2016
1 parent 2a95c65 commit fb12de9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ Some simple functionalities have been implemented thanks to some Blogs (see at t
![StickyHeaders & EndlessScrolling](/screenshots/sticky_headers.png)

![Multi Selection & SC](/screenshots/multi_selection_sc.png)
![Search](/screenshots/search_sections.png)
![Undo](/screenshots/undo_single_selection.png)

![Drag Linear](/screenshots/drag_linear.png)

![Search](/screenshots/search_sections.png)
![swipe-to-dismiss1](/screenshots/swipe-to-dismiss1.png)
![swipe-to-dismiss2](/screenshots/swipe-to-dismiss2.png)

Expand Down Expand Up @@ -90,7 +90,7 @@ Wiki pages have been completely reviewed to support all the coming functionaliti
Not all pages are filled, working in progress :-)

# Change Log
###### v5.0.0-b7 - 2016.06.18
###### v5.0.0-b7 - 2016.06.20
_Deprecation and Refactoring_ (Changes that you have to take care from all previous versions)
- Refactored class signature for `IHeader` and `IExpandable` and their abstract implementation, [see #117].
- Refactored method `moveItem()` to `swapItem()`.
Expand Down Expand Up @@ -166,8 +166,7 @@ v2.0 - 2015.06.19 | v1.0 - 2015.05.03

# Limitations
Item half swipe cannot be implemented due to how the `android.support.v7.widget.helper.ItemTouchHelper` is done.
Half swipe can be done with others means, please see issues #98 and #100.
Please see also commits of Apr 25, 2016.
Half swipe can be done with others means, please see issues #98 and #100. See also commits of Apr 25, 2016.

# Thanks
I've used these blogs as starting point:
Expand All @@ -179,7 +178,7 @@ https://www.grokkingandroid.com/statelistdrawables-for-recyclerview-selection/
# Imported libraries

[LollipopContactsRecyclerViewFastScroller](https://github.com/AndroidDeveloperLB/LollipopContactsRecyclerViewFastScroller)<br/>
Improved and adapted to work in conjunction with `FlexibleAnimatorAdapter`.
Improved and adapted to work in conjunction with `AnimatorAdapter`.

# Apps that use this Adapter
It will be a pleasure to add your App here.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,8 @@
* <br/>10/02/2016 The class is not abstract anymore, it is ready to be used
* <br/>20/02/2016 Sticky headers
* <br/>22/04/2016 Endless Scrolling
* <br/>24/04/2016 FULL and PARTIAL Swipe
*/
@SuppressWarnings({"unused", "Range", "Convert2Diamond", "ConstantConditions", "unchecked"})
@SuppressWarnings({"unused", "Range", "Convert2Diamond", "ConstantConditions", "unchecked", "SuspiciousMethodCalls"})
public class FlexibleAdapter<T extends IFlexible>
extends AnimatorAdapter
implements ItemTouchHelperCallback.AdapterCallback {
Expand Down Expand Up @@ -150,7 +149,7 @@ public boolean handleMessage(Message message) {

/* ViewTypes */
protected LayoutInflater mInflater;
@SuppressLint("UseSparseArrays")//We can usually count Type instances on the fingers of a hand..
@SuppressLint("UseSparseArrays")//We can usually count Type instances on the fingers of a hand
private HashMap<Integer, T> mTypeInstances = new HashMap<Integer, T>();
private boolean autoMap = false;

Expand Down

0 comments on commit fb12de9

Please sign in to comment.