I am going to create a sample application for add values to an ArrayList
of String
in android
My Input is
String Value="123456789012345678901234567890234567890";
added Ten value to Array list it like below output
Output -is Added to Array list:
[1234567890,1234567890,1234567890,1234567890]
Even I have used Value + /n
, but is not proper way how change it so it yields the expected result?