You can use TextUtils.join instead:
String result = TextUtils.join(", ", list);
(String.join was added in Java 8, which is why you can’t use it in Android.)
You can use TextUtils.join instead:
String result = TextUtils.join(", ", list);
(String.join was added in Java 8, which is why you can’t use it in Android.)