Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在开发时创建带有一些数据的 SQLite DB 和表,然后构建该应用程序的 apk,当我在 android 设备上安装该 apk 时,这些表和数据是否会保持不变?
请参阅下面的链接以从您的资产文件夹中复制数据库。
在 Android 应用程序中使用您自己的 SQLite 数据库
您需要了解的是,您的应用程序没有与数据库一起移植。当您的应用程序第一次运行时,它将在设备上创建。这就是该onCreated()方法只运行一次的原因。
onCreated()
情况并非如此..您的数据库不会被移植到设备上..
是的,你应该把你的数据库放在资产文件夹中......