I'm looking for a ListView with checkboxes and arrangeable by drag & drop. Something like in google keep's listview:
I'm new to all the part of building applications, so if it requires adding something to Eclipse, I'd love it to be attached also a guide :)
You can try by having a textView where user will make an entry. Below the TextView, you can create a listView where each element in the listview will have a checkbox.
Once user enters something in the textView and presses submit, you can add this entry into an ArrayList which is the adapter for the listview. Then you refresh the listView and this new entry will appear at the bottom.