dsjfnpt_app/app/src/main/java/com/police/policedatasystem/MyApplication.java

27 lines
516 B
Java
Raw Normal View History

2024-04-05 21:53:51 +08:00
package com.police.policedatasystem;
import android.app.Application;
import android.os.Handler;
public class MyApplication extends Application {
private static MyApplication instance;
private static Handler handler;
public static MyApplication getInstance() {
return instance;
}
@Override
public void onCreate() {
super.onCreate();
handler = new Handler();
instance = this;
}
public static Handler getHandler() {
return handler;
}
}