Android Question App is frozen after pause / resume on a tablet - smartphone works

Michael Müller Anywhere

Member
Licensed User
Longtime User
Hello,
I habe a new 10' tablet (transformer pad) from Asus.
When it goes in pause (tabled go to sleep after 1 minute) and then resume (I push a button and wish over the screen) the apps seems to be frozen. Nothing happen when I push button oder radio-buttons or checkboxes. Only a low little noise comes.

I tried it with "return" in the fist line after pause and resume. But that does'nt help.
The debug mode only shows "pause" and "resume"

On a smartphone there is no problem.
 

Michael Müller Anywhere

Member
Licensed User
Longtime User
I found the solution in the manifest file:

When I replace
<uses-sdk android:minSdkVersion="4" />

as a sample with

<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>

it works. No I will try with differents versions
 
Upvote 0
Top