关于这个问题:如何使用 GreenDao3 生成内容提供者?
有人可以提供一个示例,如何在 GreenDao3 中为带注释的实体创建内容提供者吗?例如,我的实体如下所示:
@Entity
public class Measurement {
@Id(autoincrement = false)
private Long id;
private Integer sensor_id;
@NotNull
private Long from_date;
@NotNull
private Long till_date;
@NotNull
private Double latitude;
@NotNull
private Double longitude;
}
我像这样从头到尾搜索了一段时间的代码示例,实际上没有一个。