此方法的光标

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

【讨论】:

以上是关于此方法的光标的主要内容,如果未能解决你的问题,请参考以下文章

在 Ace Editor 中对多个光标执行方法

input输入框中的光标大小显示不一致的解决方法

vi的使用—移动光标的方法

此方法的光标

word中怎么快速选中光标之前或之后的全部内容?

python新建文件后光标变成黑色