gpt4 book ai didi

android - Unresolved reference : Engine (WallpaperService)

转载 作者:行者123 更新时间:2023-12-04 16:26:32 25 4
gpt4 key购买 nike

我正在尝试扩展 android.service.wallpaper.WallpaperService.Engine Kotlin 中的类,但我收到“未解析的引用”错误:
Unresolved reference: Engine
即使上面清楚地导入了它。
有没有什么办法解决这一问题?

最佳答案

问题是 WallpaperService.Engine是一个包含在 WallpaperService 中的类类(一旦你看到它就很明显),并且不是静态的,因此必须绑定(bind)到 WallpaperService 的实例类,换句话说,它必须声明为 inner一类WallpaperService类(class):

import android.service.wallpaper.WallpaperService

class MyWallpaperService : WallpaperService() {

...

inner class MyEngine : Engine() {

}

}

关于android - Unresolved reference : Engine (WallpaperService),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62848168/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com