I have an app with several activities and have noted a very strange behaviour of activity sequence on the Samsung Note. When the app is started it correctly moves into 'Main' then one of my activities (kalenderactivity) is to select the date, the normal flow on all devices so far is,
But on the Samsung Note the flow is
The Note is running 4.1 but all of the other devices are running 2.3 up to 4.2 with no problems.
I would be interested if anybody with a 'Note' has seen this problem, unfortunately I only had access to the Note for a short while so cannot do any further debugging.
which is correct because the app never goes into the background.** Activity (main) Pause, UserClosed = false **
** Activity (kalenderactivity) Create, isFirst = true **
** Activity (kalenderactivity) Resume **
** Activity (kalenderactivity) Pause, UserClosed = true **
** Activity (main) Resume **
But on the Samsung Note the flow is
It goes thru 'Activity (main) create' again and resets all of the globals and causes problems down the line.** Activity (main) Pause, UserClosed = false **
** Activity (kalenderactivity) Create, isFirst = true **
** Activity (kalenderactivity) Resume **
** Activity (kalenderactivity) Pause, UserClosed = true **
** Activity (main) Create, isFirst = false **
** Activity (main) Resume **
The Note is running 4.1 but all of the other devices are running 2.3 up to 4.2 with no problems.
I would be interested if anybody with a 'Note' has seen this problem, unfortunately I only had access to the Note for a short while so cannot do any further debugging.