TellH / RecyclerTreeView

TreeView implement in Android with RecyclerView.
Apache License 2.0
651 stars 117 forks source link

how to store data of tree structure in firebase? in android studio project #40

Open jughoor opened 4 years ago

jughoor commented 4 years ago

I want to store data of tree structure in Firebase DB, below is the JSON of which i want to store in the Firebase DB.

[
{
"block": [
  {
"blockname": "first block",
"blockintervel": "daily",
"blockpic": "SDFsdfsdfgfhfghfgggfghfg",
"block": [
  {
    "blockname": "first block",
    "blockintervel": "daily",
    "blockpic": "SDFsdfsdfgfhfghfgggfghfg",
    "block": []
  }
]
  }
]
  },
  {
"block": [
  {
"blockname": "first block",
"blockintervel": "daily",
"blockpic": "mypic",
"block": [
  {
    "blockname": "first block",
    "blockintervel": "daily",
    "blockpic": "mypic",
    "block": []
  }
]
  }
]
}
]

Please help me with some code snippet.