如何为 Realm 中的字段设置默认值?

Pra*_*Jha 3 java sqlite mobile android realm

我们如何为领域模型字段提供默认值?

例子 :

class Demo extends RealmObject{
    private String id; // I want to set this id to a uuid 
    private boolean isVisibile; // set this to default as true              
}
Run Code Online (Sandbox Code Playgroud)

Epi*_*rce 6

class Demo extends RealmObject{
    public Demo() {
        id = UUID.randomUUID().toString();
        isVisible = true;
    } 

    @PrimaryKey
    private String id; // I want to set this id to a uuid 
    private boolean isVisibile; // set this to default as true              
}
Run Code Online (Sandbox Code Playgroud)

应该工作领域 2.0+