insert的时候id出现重复。
查到解决办法
http://stackoverflow.com/questions/34980137/unique-constraint-failed-sqlite-database-android
@Id private long schedule_id;
于是加上(autoincrement=true)
还是不行,发现是要用Long对象
@Id(autoincrement = true) private Long schedule_id;这样才解决。。