Giriş
Kalıtım şöyledir.
Açıklaması şöyle
Şöyle yaparız.
onResume metodu
Şöyle yaparız.
Kalıtım şöyledir.
public class MyApplication extends Application {...}
onLowMemory metoduAçıklaması şöyle
onPause metoduYou should implement this method to release any caches or other unnecessary resources you may be holding on to. The system will perform a garbage collection for you after returning from this method.
Şöyle yaparız.
@Override
public void onPause() {
super.onPause();
...
}
Şöyle yaparız.
@Override
public void onResume() {
super.onCreate();
...
}
Hiç yorum yok:
Yorum Gönder