Android examples for java.lang:array union merge
concatenate two string array
import android.graphics.Typeface; import android.text.Spannable; import android.text.SpannableString; import android.text.SpannableStringBuilder; import android.text.style.StyleSpan; import java.util.Arrays; import java.util.LinkedHashSet; import java.util.List; import java.util.Set; public class Main{ public static String[] concat(String[] first, String[] second) { String[] result = new String[first.length + second.length]; System.arraycopy(first, 0, result, 0, first.length); System.arraycopy(second, 0, result, first.length, second.length); return result; }//from w w w . j a v a2 s . c o m }