自应用发布以来,我一直在使用Android Studio开发应用。
直到最近,一切都很好,我必须调试和检查数据库文件。由于我不知道如何直接看到数据库,当我调试生成数据库文件时,我不得不将数据库文件从我的手机导出到PC上。
为此,我必须打开DDMS >文件资源管理器。一旦我打开DDMS,我必须重新连接USB,我失去了调试线程。在检查数据库文件之后,我必须关闭DDMS并重新连接USB以回到调试模式。
这太复杂了。有人有更好的方法来做到这一点在Android Studio(我知道它更容易在Eclipse) ?
虽然这是一个很老的问题,但我认为它今天仍然有意义。在最新版本的android studio中,我找到了一种方法来查看它(我不确定以前的版本中是否可用)。]
下面是如何查看数据库中的数据:
步骤:
Go to View > Tool Windows > Device File Explorer
Then the folder data > data and you will see applications lists.
There scroll down a little bit and see the package [ your package for
application ].
After finding your package, see databases folder and select file, right
click it and save [ download ]
As you can't see the data directly, there is a tool, DB Browser for SQLite,
go website https://sqlitebrowser.org/
Open Db browser and click open database and choose the database table you
downloaded and it will show you the data.
新编辑
现在(当你阅读这篇文章的时候),这甚至更容易了,因为Android工作室已经提供了数据库检查器(就在右下角附近)。
点击它,你会看到数据库。
但是,请确保API的最小级别是26,如果不通过构建更改它。gradle文件作为minSdkVersion 26