27 Kasım 2017 Pazartesi

Application Sınıfı

Giriş
Kalıtım şöyledir.
public class MyApplication extends Application {...}
onLowMemory metodu
Açıklaması şöyle
You 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.
onPause metodu
Şöyle yaparız.
@Override
public void onPause() {
  super.onPause();
  ...
}
onResume metodu
Şöyle yaparız.
@Override
public void onResume() {
  super.onCreate();
  ...
}

Hiç yorum yok:

Yorum Gönder