@ Майкл Дади - Если бы кто-нибудь мог объяснить, как это сделать, это действительно помогло бы.
Я просто объяснил вам способ архивации этого задания
Прежде всего, сделать POJO или класс модели из JSON это будет просто
{
"animalList": [
{
"animalName": "cat",
"animalFactList": [
{
"fact": "this ia fun fact of cat one"
},
{
"fact": "this ia fun fact of cat two"
}
],
},
{
"animalName": "dog",
"animalFactList": [
{
"fact": "this ia fun fact of dog one"
},
{
"fact": "this ia fun fact of dog two"
}
],
},
{
"animalName": "xyz",
"animalFactList": [
{
"fact": "this ia fun fact of xyz one"
},
{
"fact": "this ia fun fact of xyz two"
}
],
}
],
}
Вот класс модели из JSON
public class Animal {
private List<AnimalListBean> animalList;
public List<AnimalListBean> getAnimalList() {
return animalList;
}
public void setAnimalList(List<AnimalListBean> animalList) {
this.animalList = animalList;
}
public static class AnimalListBean {
/**
* animalName : cat
* animalFactList : [{"fact":"this ia fun fact of cat one"},{"fact":"this ia fun fact of cat two"}]
*/
private String animalName;
private List<AnimalFactListBean> animalFactList;
public String getAnimalName() {
return animalName;
}
public void setAnimalName(String animalName) {
this.animalName = animalName;
}
public List<AnimalFactListBean> getAnimalFactList() {
return animalFactList;
}
public void setAnimalFactList(List<AnimalFactListBean> animalFactList) {
this.animalFactList = animalFactList;
}
public static class AnimalFactListBean {
/**
* fact : this ia fun fact of cat one
*/
private String fact;
public String getFact() {
return fact;
}
public void setFact(String fact) {
this.fact = fact;
}
}
}
}
он будет хранить ваши данные временно, в то время как приложение закрывается, вы потеряете все данные, поэтому вы можете использовать любую базу данных для сохранения данных на локальном устройстве.
теперь вы можете установить адаптер, используя этот класс Animal.class вrecyclerview
.