Haruki Hasegawa

Results 93 comments of Haruki Hasegawa

@petersnoopy I forked the timehops project and made some modifications. Swiping works well, but drag & drop sorting does **not** working well... I'll take a look this problem, but pull...

Hi. Have you disabled change animations like this? ```java ((SimpleItemAnimator) recyclerView.getItemAnimator()).setSupportsChangeAnimations(false); ``` --- > I find that some items would flash sometimes on long pressed, > it seems that it...

Hi. Sorry, this library does not support nesting of expandable feature. I think TellH's library is a good alternative if you need a tree formed (= nesting of expandable) recyclerview....

Hi. If you are trying to use the `DemoHeaderFooterAdapter`, just wrap the draggable adapter with a `DemoHeaderFooterAdapter`. ```java mAdapter = new DraggableGridExampleAdapter(getDataProvider()); mWrappedAdapter = mRecyclerViewDragDropManager.createWrappedAdapter(mAdapter); mWrappedAdapter = new DemoHeaderFooterAdapter(mWrappedAdapter); mRecyclerView.setAdapter(mWrappedAdapter);...

Hmm... Good question, but the answer is whichever you want in this case. The "Manage items" item can be implemented both normal item or footer item. If the "Manage items"...

@QZYDDD Hi. Unfortunately, this library does not support such use case. Maybe, I need to add some option which allows more flexible control of how to start dragging/swiping items. -...

Hi, I am not sure what is happening but I suggest you to check the following stuff; - Make sure to returning unique ID values - Do not use captured...

Hi. Just custom the [`onSetSwipeBackground()`](https://github.com/h6ah4i/android-advancedrecyclerview/blob/0.10.4/example/src/main/java/com/h6ah4i/android/example/advrecyclerview/demo_s_basic/SwipeableExampleAdapter.java#L171) method as you need.

Sorry, this library does not provide sticky header feature 😞

Hi. Sorry, I am not sure what exactly you want, but I guess [`OnItemDragEventListener`](https://github.com/h6ah4i/android-advancedrecyclerview/blob/0.10.3/library/src/main/java/com/h6ah4i/android/widget/advrecyclerview/draggable/RecyclerViewDragDropManager.java#L86) is the what you are looking for. ```java dragMgr.setOnItemDragEventListener( new RecyclerViewDragDropManager.OnItemDragEventListener { /** * Callback method...