Git Product home page Git Product logo

Comments (2)

justasm avatar justasm commented on September 13, 2024

I have not run your code, but there may be several issues at play:

  1. DragLinearLayout requires you to use removeDragView() instead of removeView(). (It is a flaw in the library that it does not enforce this properly.) Easiest fix would be to use the former instead of the latter. Note that there is also no need to call setViewDraggable() as you do right before removing it, since addDragView() makes it draggable.
  2. You are iterating over the Views in your ViewGroup as you are moving them around. An in-place sort is bound to cause issues if you don't carefully keep track of your loop counter, e.g. consider the case:
  • Iteration 0
    [A B C D] -> remove View at position 0, i.e. A
    [B C D] -> move View A to saved position, e.g. 1
    [B A C D]
  • Iteration 1
    [B A C D] -> remove View at position 1, i.e. A
    [B C D] -> move View A to saved position, 1 again
    [B A C D]
    ..
    i.e. B is never processed. It may be simpler to remove all the Views first and then add them in the right order.

Depending on your use-case, you may be better off creating and binding Views dynamically with an adapter, e.g. by using a RecyclerView instead of DragLinearLayout. ItemTouchHelper can provide drag and drop support. You can find a good overview and tutorial here.

from draglinearlayout.

goldmont avatar goldmont commented on September 13, 2024

Hi,

I've solved using RecyclerView. Do you know how to add items to Array to a specific index which is saved into SharedPreferences? So I can restore the buttons order when the App is launched. Thanks again!

from draglinearlayout.

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.