- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
今天我要切换到 Realm,我想知道 RealmConfiguration 的确切用途。
假设我有两个使用 Realm 的 Activity 。
在获取 Realm 的 defaultInstance 时,我必须指定 RealmConfiguration。我每次都必须在我的两个 Activity 中调用它吗?它具体做什么?这是我的数据吗?例如,我应该在应用程序类中声明一次吗?
// Create a RealmConfiguration that saves the Realm file in the app's "files" directory.
RealmConfiguration realmConfig = new RealmConfiguration.Builder(this).build();
Realm.setDefaultConfiguration(realmConfig);
我试图在 Realm 上搜索,但找不到答案。
非常感谢您的帮助,
最佳答案
When getting the defaultInstance of Realm, I have to specify the RealmConfiguration. Do I have to call this each time on my two activities?
可以,但不应该。
Should I declare this once in the application class for instance?
是的。
public class MyApp extends Application {
@Override
public void onCreate() {
super.onCreate();
RealmConfiguration realmConfiguration = new RealmConfiguration.Builder(this)
.build();
Realm.setDefaultConfiguration(realmConfiguration);
}
}
然后您就可以在您的应用中的任何地方说这句话。
Realm realm = Realm.getDefaultInstance();
它将使用您在应用程序类中设置的 RealmConfiguration 进行配置。
What does it do exactly? is this my data?
这不是您的数据,而是您数据的配置。例如。数据库文件的名称是什么,架构是什么版本,数据是否加密,应如何处理迁移到新架构版本等。查看更多选项 here .
如果您的应用中有多个 Realm 文件,您可以使用多个 RealmConfigurations。每人一个。不过,在您的应用中只有一个 Realm 文件是完全正常的。
关于Android - Realm - 正确使用Realmconfiguration,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38432421/
我在用我的 android 代码打开和写入 Realm 文件时遇到问题。 下面是示例代码。 public class FirstActivity extends AppCompatActivity {
我正在尝试通过创建简单的测试应用程序来学习如何使用 Realm,但我总是遇到此错误。我正在使用 Realm 1.0.0。logcat 中的错误: java.lang.NullPointerExcept
我正在为 Android 应用程序使用 Realm 数据库。不知道为什么会发生这种情况,但每次我卸载应用程序时,第一次运行总是在我的 Activity 中崩溃: realm = Realm.getDe
我正在尝试将 Realm 用作我应用程序中高分的数据库。然而,当这行代码被调用时: realmConfig = new RealmConfiguration.Builder(getActivity()
对于我的 Android 应用程序,我使用 Realm 移动数据库。我想为此编写测试,我发现最好的测试方法是使用仪器测试。 这是我的数据库类的构造函数: public Database(Context
这个问题在这里已经有了答案: Android Realm initialization in project (2 个答案) 关闭 3 年前。 并添加依赖项和插件,一切都很好,但是当我放置它时 p
我正在使用 Realm 添加一个新数据库,当我添加时 Realm realm = Realm.getInstance(getApplicationContext());我得到这个错误 'getIns
我是一名优秀的程序员,十分优秀!