Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Avoiding Application Restart when Hardware Keyboard Opens

I am currently working on a multi-threaded game application for the Android platform... so far so good... I just got over a bug in my application which caused it to restart on orientation change (fixed by designating a specific orientation depending on the availability of a hardware keyboard or not, which is important 'cuz it is an online game with chat capabilities), and that works... BUT now i am trying to avoid the same problem when the user simply slides open the hardware keyboard. I'm not quite sure how to go about avoiding the restart of my application or the saving of the state of my application. Any solutions/suggestions?

like image 321
sduffy89 Avatar asked Nov 07 '10 01:11

sduffy89


1 Answers

In your <activity> tag in your manifest:

android:configChanges="orientation|keyboardHidden"

In your activity class:

@Override
public void onConfigurationChanged(final Configuration newConfig)
{
    // Ignore orientation change to keep activity from restarting
    super.onConfigurationChanged(newConfig);
}
like image 95
Mark B Avatar answered Nov 11 '22 14:11

Mark B