I am passing Array List of string values to next activity,
some mobile it is working properly ,in some it does not pass values.
I am passing Array List of string values to next activity,
some mobile it is working properly ,in some it does not pass values.
The probably doesn't work on some devices because you are trying to pass too much data and you are overflowing the internal buffer that is used for IPC (interprocess communication). In general you shouldn't pass large arrays in an Intent
. There are other ways of doing this:
Activities
by storing the data in a public static
variable.SharedPreferences