I want to convert my ArrayList containing elements with the toString method shadowed in "T":
public String toString(){
return name + " " + realname;
}
to a CharSequence array containing all the "T"s toString. Checked some stuff out but nothing works for me since CharSequence[] can't be concatenated (correct me if i'm wrong).
Saw a solution for the ArrayList at -> ArrayList<String> to CharSequence[] which didn't work out for me
I'm doing this because I've searched for devices ("T") and added them to a Arraylist, the user then has to make a choice which one to accept by clicking on a mutliple choice dialogwindow as shown under DIALOG_TEXT_ENTRY in this link
Please help me out cause it's driving me mad