我想在我的应用程序中使用卡片视图,但我正在使用Realm数据库,我非常感谢一个简短的解释或示例。谢谢:))
答案 0 :(得分:2)
卡片视图是用于向用户显示内容的用户界面。例如,一张卡片,包含用户的姓名和年龄,用户的图像等。而Realm是一个移动数据库,它存储用户的实际值,如姓名,年龄,图像路径等。 / p>
因此,您使用Card View显示值,使用Realm存储实际值。
可以在卡片视图上阅读更多内容here
并阅读Realm可以来自here
task drivemap(type:Exec) {
//on windows:
commandLine 'cmd', '/c', 'net use z: /delete'
commandLine 'cmd', '/c', 'NET USE Z: \\x.x.x.x\ZDrive\Clinprod %megpass% /USER:TSH\%meguser%'
commandLine 'cmd', '/c', 'Z:'
commandLine 'cmd', '/c', 'xcopy /Y Z:\Episodes\Development\Meg%version%\drop\Build%buildNumber% D:\MegDS\release /e/s'
//store the output instead of printing to the console:
standardOutput = new ByteArrayOutputStream()
//extension method drivemap.output() can be used to obtain the output:
ext.output = {
return standardOutput.toString()
}
以上是Realm示例。
以下是一些卡片视图示例
答案 1 :(得分:0)
因为Realm为您制作了对象,所以您只需使用getter和setter方法填充卡片上的视图。这将通过与您的RecyclerView关联的适配器或您正在使用的任何列表类型视图来完成。