Returns list of multiple CharSequence joined into a single CharSequence separated by localized delimiter such as ", ". @hide
(Iterable<CharSequence> list)
| 276 | * @hide |
| 277 | */ |
| 278 | public static CharSequence join(Iterable<CharSequence> list) { |
| 279 | final CharSequence delimiter = Resources.getSystem().getText(R.string.list_delimeter); |
| 280 | return join(delimiter, list); |
| 281 | } |
| 282 | |
| 283 | /** |
| 284 | * Returns a string containing the tokens joined by delimiters. |