Is it possible to distinguish the cause of application deactivation?

Aplpication enters the deactivated state when users press back button or there is a call\SMS. My question is - how to distinguish the cause? It is important to prevent cheating etc.

I have time counter - it will be ok to freeze it when there's income call or SMS. In case of pressing back button it shouldn't be saved.

link|improve this question

50% accept rate
What's your use case? In more depth than 'cheating' – William Melani Jan 29 at 9:51
feedback

2 Answers

Haven't tested it but it may work:

  • Handle the back button on your page, set a static flag to true, then proceed with the 'normal' back button behaviour
  • On each page, override OnNavigatedTo and set the flag to false

Now, when the Desactivated event is triggered, if the flag is set to true then you know the user has pressed the back button.

link|improve this answer
It should work, but it's work around. I thought there is a possibility within SDK. – szysz3kster Jan 29 at 12:14
feedback

If this is to prevent cheating in a game I wouldn't make make a distinction between 'back' and 'getting a call' because to the user that would be confusing and it would trigger others to cheat by having someone call them.

Just resume from the game's last save point or offer to try the level again.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.