Closed. This question is off-topic。它当前不接受答案。
想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
6年前关闭。
我想要具有正确滚动的可拖动gridview。谁能帮我 ?
我找到了图书馆,但是在垂直滚动条中却无法正常工作。
我已经尝试过这个
https://github.com/thquinn/DraggableGridView
想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
6年前关闭。
我想要具有正确滚动的可拖动gridview。谁能帮我 ?
我找到了图书馆,但是在垂直滚动条中却无法正常工作。
我已经尝试过这个
https://github.com/thquinn/DraggableGridView
public void setContainer(PagedDragDropGrid container) {
this.container = container;
}
private int positionOfItem(int pageIndex, int childIndex) {
int currentGlobalIndex = 0;
for (int currentPageIndex = 0; currentPageIndex < adapter.pageCount(); currentPageIndex++) {
int itemCount = adapter.itemCountInPage(currentPageIndex);
for (int currentItemIndex = 0; currentItemIndex < itemCount; currentItemIndex++) {
if (pageIndex == currentPageIndex && childIndex == currentItemIndex) {
return currentGlobalIndex;
}
currentGlobalIndex++;
}
}
最佳答案
试试这个链接...
https://github.com/nhaarman/ListViewAnimations
它提供可拖动的网格项目。
关于android - 在可拖动的GridView中获取错误以在android中进行垂直滚动,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20280859/
10-10 00:53