博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Litepal中主键id的类型
阅读量:6626 次
发布时间:2019-06-25

本文共 224 字,大约阅读时间需要 1 分钟。

hot3.png

第一次使用Litepal,习惯性的将实体类的主键id设置成了Integer类型,导致一直出错

Activity ... did not call through to super.onPostCreate()

添加了onPostCreate方法也不行,搜素也找不到答案。

多次尝试之后将类的id设置成int类型就可以了。

private int id;

转载于:https://my.oschina.net/u/871551/blog/349596

你可能感兴趣的文章
js的逻辑 OR 运算符- ||
查看>>
[SQL Server]一次执行资料夹内的.sql 指令码
查看>>
SQLServer中的死锁的介绍
查看>>
【计算机视觉】粒子滤波跟踪
查看>>
hadoop集群扩展
查看>>
操作系统诊断
查看>>
[Compose] 19. Leapfrogging types with Traversable
查看>>
Tomcat version 7.0 only supports J2EE 1.2, 1.3, 1.4, and Java EE 5 and 6 Web modules
查看>>
2015年度新增开源软件排名TOP100
查看>>
设计模式 之 原型
查看>>
BZOJ 2456: mode(新生必做的水题)
查看>>
SSM实战——秒杀系统之高并发优化
查看>>
View State
查看>>
自旋锁spinlock解析
查看>>
【java.lang.UnsupportedClassVersionError】版本不一致出错
查看>>
Ubuntu16.04 安装RabbitMQ
查看>>
javascript游戏引擎
查看>>
JVM Debugger Memory View for IntelliJ IDEA
查看>>
LINUX下GDB反汇编和调试
查看>>
golang fmt格式“占位符”
查看>>