I have used DynamicGrid in a ScrollView.(because I need to put a picture above DynamicGrid)
And I Override onMeasure Method to show all items; But the item below can't drag drop to move to other place;
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
}
Really have to use Recyclerview... Any help will be much appreciated.Thanks.