one way to initialize charsequence[] is
charsequence[] item = {"abc","def"};
but i don't want to initialize it this way. can someone please suggest some other way like the way we initialize string[] array...
thanks
feedback
|
|
This is the way you initialize a string array. You can also have:
| |||
|
feedback
|
|
CharSequence is interface you can't initialize like Initialize it with it's implementataions
and their's arrays
| ||||
|
feedback
|