Allow user to quit app with back button.

This commit is contained in:
Eder Bastos 2014-06-22 22:29:37 -04:00
parent 01fc1a6c54
commit 2c1008f0ae

View File

@ -298,6 +298,13 @@ public final class GameListActivity extends Activity
@Override
public void onBackPressed()
{
SwitchPage(0);
if (mCurFragmentNum == 0)
{
finish();
}
else
{
SwitchPage(0);
}
}
}