I am making a quiz app and i couldn't figure out how to store my questions and answers without using SQLite or datashare I'm used to c++ so I'm searching for the equivalent of making a struct and using an array to store my data
struct item {
string Question;
string Answer1;
string Answer2;
};
item data[] ;
how can i make an equivalent of this in Android Studio, store data in it and import from it to a textView for example ??