Back to project page TheCompressYourFiles.
The source code is released under:
Apache License
If you think the Android project TheCompressYourFiles listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package th.watsize.filebrowser; //from ww w . j av a 2 s . co m import android.view.KeyEvent; public abstract class BaseActivity extends FilebrowserULTRAActivity { @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if ((keyCode == KeyEvent.KEYCODE_BACK)){ this.finish(); return false; } return super.onKeyDown(keyCode, event); } }