Fix View not attached to windown manager crash when starting the app in landscape mode on Pixel XL

This commit is contained in:
Cristian Luis Duarte 2018-04-12 15:55:20 -03:00
parent b031c1c070
commit a7328f0934

View file

@ -174,4 +174,10 @@ public class GotoActivity extends AppCompatActivity {
return super.onOptionsItemSelected(item);
}
@Override
protected void onDestroy() {
cancelActivityIndicator();
super.onDestroy();
}
}