Code Monkey home page Code Monkey logo

Comments (8)

mikepenz avatar mikepenz commented on June 5, 2024

@hsdmiranda

regarding your first topic. You can extend the SimpleDragCallback and overwrite the

@Override
    public void onMoved(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder, int fromPos, RecyclerView.ViewHolder target, int toPos, int x, int y) {
        super.onMoved(recyclerView, viewHolder, fromPos, target, toPos, x, y);
    }

For the second thing I've implemented a IDraggable interface which will be checked in the SimpleDragCallback and disable the drag feature for the items which are not draggable.

This is in v1.2.2

from fastadapter.

hsdmiranda avatar hsdmiranda commented on June 5, 2024

In case someone needs to know when an item has been dropped, this is how I implemented:

I extended the original interface from fastAdapterExtensions and added one more callback method.
public interface ImprovedItemTouchCallback extends ItemTouchCallback { void onDrop(Integer mFrom, Integer mTo); }

And this is my callback that remembers the location of the item to send the information on the onDrop. I also added a small snippet that checks if the target is draggable, so my item does not swipe with it (very specific for my user case i guess, it can be removed)

public class ImprovedDragCallback extends SimpleDragCallback {

    private Integer mFrom = null;
    private Integer mTo = null;
    private ImprovedItemTouchCallback callback;

    public ImprovedDragCallback(ImprovedItemTouchCallback itemTouchCallback) {
        super(itemTouchCallback);
        this.callback = itemTouchCallback;
    }

    @Override
    public boolean onMove(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder, RecyclerView.ViewHolder target) {
        if (target.itemView.getTag() instanceof IDraggable) {
            if (((IDraggable) target.itemView.getTag()).isDraggable()) {
                if (mFrom == null) {
                    mFrom = viewHolder.getAdapterPosition();
                }
                mTo = target.getAdapterPosition();

                return super.onMove(recyclerView, viewHolder, target);
            }
        }

        return false;
    }

    @Override
    public void clearView(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder) {
        super.clearView(recyclerView, viewHolder);

        if (mFrom != null && mTo != null) {
            callback.onDrop(mFrom, mTo);
        }

        // clear saved positions
        mFrom = mTo = null;
    }
}

from fastadapter.

Rainer-Lang avatar Rainer-Lang commented on June 5, 2024

Maybe you would like to try a pr?

from fastadapter.

hsdmiranda avatar hsdmiranda commented on June 5, 2024

I tried to make the project work on my machine and was failing for some weird reasons. So, I gave up on the pull request. I will give another try later, with more appropriated naming.

from fastadapter.

Rainer-Lang avatar Rainer-Lang commented on June 5, 2024

Please let us know if we could help you.

from fastadapter.

mikepenz avatar mikepenz commented on June 5, 2024

@hsdmiranda so the onMoved() method does not fire after dropping an item?

from fastadapter.

hsdmiranda avatar hsdmiranda commented on June 5, 2024

Sorry for the delay, crazy week here. @mikepenz the onMoved its called before the oDrop. The onMove is called every time an item passes over another item.

from fastadapter.

mikepenz avatar mikepenz commented on June 5, 2024

@hsdmiranda no problem. Oh cool. :)

from fastadapter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.