此方法的光标
Posted
技术标签:
【中文标题】此方法的光标【英文标题】:Cursor to this method 【发布时间】:2019-08-29 08:51:40 【问题描述】:错误:不确定如何将 Cursor 转换为此方法的返回类型 (android.arch.lifecycle.LiveData>)。
@Dao
public interface NoteDao
@Insert
void insert(Note note);
@Update
void update(Note note);
@Delete
void delete(Note note);
@Query("DELETE FROM note_table")
void deleteAllNotes();
@Query("SELECT * FROM note_table ORDER BY priority DESC")
LiveData<List<Note>> getAllNotes();
如何解决?
【问题讨论】:
【参考方案1】:使用androidx.room.*
时,请务必使用androidx.lifecycle.LiveData
而不是android.arch.lifecycle.LiveData
或降级为pre-AndroidX versions of Room
【讨论】:
以上是关于此方法的光标的主要内容,如果未能解决你的问题,请参考以下文章