companion object {
@Volatile
private var instance: AreaManager? = null
@JvmStatic
fun getInstance(): AreaManager {
return instance ?: synchronized(this) {
instance ?: AreaManager().also { instance = it }
}
}
}
suspend fun updateArea(context: Context): Boolean {
val filePath = downloadFile(context)
return when (filePath) {
null -> false
else -> true
}
}
}
我现在想在 fragment 的 java 代码里调用,应该怎么做?试了 Claude 、GPT 都没能实现,各种飘红。
android 也太难学了
[ol]
[/ol]