Posts by Lucas Assis • 1 point
3 posts
-
0
votes1
answer35
viewsA: Back button deletes Fragment in main Activity
Make sure your Fragment is calling the onStop method. @Override public void onResume() { super.onResume(); Log.e("Ciclo", "Activity: Metodo onResume() chamado"); } @Override public void onPause() {…
-
0
votes1
answer31
viewsA: Images in Listview reloading every time I select Fragment?
Make sure your Ragment is calling the onStop method. include this code in your Ragment. @Override public void onResume() { super.onResume(); Log.e("Ciclo", "Activity: Metodo onResume() chamado"); }…
-
0
votes0
answers73
viewsQ: How to disable the on Stop method?
I am developing an app and am using 3 Fragments in a slider layout. And when I slide from the first tab to the third tab, my first tab calls the onStop method and consequently, everything in that…