The loop shows makeText (getApplicationContext (), ..., Toast.LENGTH_SHORT) .show ();
for ( int i=0; i<100; i++ ) { ... ... ... makeText(getApplicationContext(), st1, Toast.LENGTH_SHORT).show(); makeText(getApplicationContext(), st2, Toast.LENGTH_SHORT).show(); makeText(getApplicationContext(), st3, Toast.LENGTH_LONG ).show(); } But for some reason, the output to the screen after approximately the fifteenth output of makeText (..) suddenly stops. Completely! Without any warnings!
Why is this happening? Not enough memory?
How to solve this problem?
PS Variables st1, st2, st3 - are normally formed and at the time of stopping the output to the screen have normal real (not zero, not empty) string values