You can try like this:
new ArrayList<>(Arrays.asList(recentlyClient))
Example code how to implement:
String[] recentlyClient;
ArrayAdapter recenAdapter = new ArrayAdapter(MainActivity.this,android.R.layout.simple_list_item_1,new ArrayList<>(Arrays.asList(recentlyClient)));