mrKlar / PagedDragDropGrid

An Android ViewGroup that implements a paged grid with drag'n'drop moveable items
406 stars 184 forks source link

bug: columnCount and rowCount? #27

Open suetming opened 11 years ago

suetming commented 11 years ago

1.version 0.2 if I set columntCount to 3 then I must set rowCount to 3 or it not work! still AUTOMATIC, and if 20 rows and 20 columns, the item of view is very small and not wrap content !

2.if i set > 35 items in one page then i can't see 36/37/38......

Example Demo How should I do?

mrKlar commented 11 years ago
  1. Actually it is working as designed. If you put a row and column count, the grid assumes that you know what you are doing, it is totally manual, it is not a hint for automatic placement. You cannot mix AUTOMATIC and manual mode. That would be a new feature.
  2. For the number of objects shown in a page, there is a limitation for now because there is no scroll per page. This is a feature that is development, but because it touches every part of the code, it will take some time.
mrKlar commented 11 years ago

New feature: mix AUTOMATIC and manual mode for column and row.

suetming commented 11 years ago

ok,thanks, it would be helpful I have revised you code for fit my app another issue. there is no item listener for this, main view click and item listener use same listener, i think it's strange.