User can abort app while it's downloading data

This commit is contained in:
pelya
2009-12-11 13:46:45 +02:00
parent 865e4f619b
commit 9c22af0d63

View File

@@ -305,6 +305,8 @@ public class DemoActivity extends Activity {
// Overrides Back key to use in our app
if( mGLView != null )
mGLView.nativeKey( keyCode, 1 );
if( keyCode == KeyEvent.KEYCODE_BACK && !downloader.DownloadComplete )
onStop();
return true;
}