I want add item at the top of array?
how can i achieve this?
there are two item in array. i want to add item at top of the array.
result1 = new String[result.length+1];
for(int i=result.length;i==0;i--)
{
if(i==0)
{
result1[0]="Latest";
}
result1[i]=result[i-1];
}