We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91c1d5e commit 96c0a52Copy full SHA for 96c0a52
1 file changed
ui/list-view/list-view.android.ts
@@ -39,6 +39,8 @@ export class ListView extends common.ListView {
39
public _createUI() {
40
this._android = new android.widget.ListView(this._context);
41
42
+ // Fixes issue with black random black items when scrolling
43
+ this._android.setCacheColorHint(android.graphics.Color.TRANSPARENT);
44
if (!this._androidViewId) {
45
this._androidViewId = android.view.View.generateViewId();
46
}
0 commit comments