i am getting this message in logcat A resource was acquired at attached stack trace but never released. See java.io.Closeable for information on avoiding resource l
For me the problem happened because I was overriding the method onBackPressed() without calling the super()
onBackPressed()
super()
@Override public void onBackPressed() { //some coding here super.onBackPressed(); }