DynamicGrid icon indicating copy to clipboard operation
DynamicGrid copied to clipboard

Rendering artifacts still has problem .

Open amitkumarsharma008 opened this issue 11 years ago • 4 comments

In L, the rendering artifact issue is very well solved by the 39th commit but when we drag the cells on the screen at a pretty high speed we can still see the Cells disappearing/invisible issue.

amitkumarsharma008 avatar Nov 14 '14 15:11 amitkumarsharma008

In L, the rendering artifact issue is very well solved by the pull request 41 but when we drag the cells on the screen at a pretty high speed we can still see the Cells disappearing/invisible issue.

amitkumarsharma008 avatar Nov 14 '14 15:11 amitkumarsharma008

The randomly disappearing problem on Lollipop (Nexus 5) still not fixed though the last commit says it is.

Doctoror avatar Jan 15 '15 15:01 Doctoror

For me it is not 100% fixed, but greatly alleviated. I can see the disappearance only when I drag cell from position 1 to position 0, but it gets fixed when I release the cell. I can leave with it for now.

denisk20 avatar Jan 15 '15 21:01 denisk20

In AbstractDynamicGridAdapter, method hasStableIds() replace return true to return android.os.Build.VERSION.SDK_INT < 20;

Example: @Override public final boolean hasStableIds() { //return true; return android.os.Build.VERSION.SDK_INT < 20; }

NG-Studio-Development avatar Mar 09 '16 14:03 NG-Studio-Development