In android studio I am trying to create a college app that will contain different screens containing information. I have created a drawer but am unable to add items to the drawer because of the following line of code:
mApplicationOptions = getResources().getStringArray(R.array.application_options);
everything else works in my program except the array part under array I get the error cannot find symbol variable array
. How can I resolve this in order to use the array to populate the list in my navigation drawer.
Thanks!