0

I have a CCScene, In the CCScene there is button "More Apps / rate App".

When I tapped on, It'll take me to the play store and when I press the back button I got the black screen

but What is open that time "CCScene which have the button "More Apps /Rate app" ".

Anybody suggest what is the matter ??

Akarsh M
  • 1,629
  • 2
  • 24
  • 47

1 Answers1

0

I think your screen orientation may be changing when you moving from that activity so that it killing that scene,So place this line in your activity of manifest file and try

android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
Rama
  • 1,156
  • 1
  • 7
  • 13
  • check by placing your moving to play store code in runOnUiThread() – Rama Sep 27 '13 at 11:09
  • no change .... I create a new dummy and copy_paste the code and it run perfectly. I added some function on it .. occuring the same problem – Akarsh M Sep 27 '13 at 11:20
  • does we can get the back button event when we come back to the google play – Akarsh M Sep 27 '13 at 11:29
  • no its not possible to get Google play event when you pressed back.Does your app saving the instance when you clicking home and lock button – Rama Sep 27 '13 at 13:05