0

我在 RCAR-H3 MCU 上运行 Android 9.0。有时 GUI(所有应用程序)非常慢,我在 logcat 中看到如下日志:

W SurfaceFlinger: Timed out waiting for hw vsync; faking it

问题是否来自图形驱动程序?

4

1 回答 1

-2

是从 URL 或资产加载图像吗?

如果您使用 url 比在 android Glide Library 中最好在 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();```
于 2021-10-27T14:30:39.910 回答