29 lines
751 B
Java
Raw Normal View History

2017-02-07 02:01:32 +08:00
package com.topjohnwu.magisk.components;
import com.topjohnwu.magisk.MagiskManager;
2017-07-23 00:12:15 +08:00
import com.topjohnwu.magisk.utils.CallbackEvent;
import com.topjohnwu.magisk.utils.Utils;
2017-02-07 02:01:32 +08:00
public class Fragment extends android.support.v4.app.Fragment {
public MagiskManager getApplication() {
return Utils.getMagiskManager(getActivity());
2017-02-07 02:01:32 +08:00
}
2017-07-23 00:12:15 +08:00
@Override
public void onResume() {
super.onResume();
if (this instanceof CallbackEvent.Listener) {
((CallbackEvent.Listener) this).registerEvents();
}
}
@Override
public void onPause() {
if (this instanceof CallbackEvent.Listener) {
((CallbackEvent.Listener) this).unregisterEvents();
}
super.onPause();
}
2017-02-07 02:01:32 +08:00
}