摘要: kotlin.NotImplementedError: An operation is not implemented: Not yet implemented 会发生——当你 override fun afterTextChanged(s: Editable?) { TODO("Not yet i 阅读全文
posted @ 2021-05-27 21:11 ou尼酱~~~ 阅读(178) 评论(0) 推荐(0)
摘要: Fragment.onViewCreated()是在Fragment.onCreateView()函数之后调用的,调用到它时 表明fragment视图层级结构已创建完毕。在onViewCreated()函数里观察LiveData可以保证“展示crime的视图已经准备完毕”,这也解释了为什么你传给ob 阅读全文
posted @ 2021-05-27 20:28 ou尼酱~~~ 阅读(286) 评论(0) 推荐(0)
摘要: private 意味着只在这个类内部(包含其所有成员)可见; protected—— 和 private一样 + 在子类中可见。 internal —— 能见到类声明的 本模块内 的任何客户端都可见其 internal 成员; public —— 能见到类声明的任何客户端都可见其 public 成员 阅读全文
posted @ 2021-05-27 20:00 ou尼酱~~~ 阅读(177) 评论(0) 推荐(0)
摘要: interface Dao里面@Update和@Insert不需要任何参数。Room会使用他们产生合适的SQL操作命令。 阅读全文
posted @ 2021-05-27 17:10 ou尼酱~~~ 阅读(143) 评论(0) 推荐(0)