我在RCAR-H3单片机上运行Android 9.0。有时GUI(所有应用程序)非常慢,我在日志中看到如下日志:
W SurfaceFlinger: Timed out waiting for hw vsync; faking it
问题来自图形驱动程序吗?
是否从URL或资产加载图像?
如果你在android中使用url,最好在android中加载图像。下面我添加了一些示例代码:
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
Glide.with(context)
.asBitmap()
.load(model.getImage())
.apply(RequestOptions.noTransformation())
.diskCacheStrategy( DiskCacheStrategy.ALL )
.priority(Priority.IMMEDIATE)
.into(holder.imgcategory)
.waitForLayout();```