This my might be a stupid question, but how do you work with String Array?
I am trying to do something like this, but my app would crash upon launching.
String names [] = null ;
names[0]= "I am";
names[1]= "Ammar";
Toast.makeText(getApplicationContext(), names[1] , Toast.LENGTH_SHORT).show();