public SampleGridViewAdapter(Context context,ArrayList<String> urls) {
    this.context = context;
    this .urls=urls;
    Log.i("DDDDDDDDDD",String.valueOf(urls));
    simpleArray = urls.toArray(new String[urls.size()]);
    Log.i("GGGGGGGGGGG",String.valueOf(simpleArray));
}
When I print DDDDDDD in the log, the output is an arraylist of URL's, but when I see GGGGGGG, it changes to 05-09 [Ljava.lang.String;@b125cf00
 
     
     
     
     
    