mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
32 lines
912 B
Java
32 lines
912 B
Java
|
package tech.rabbit.common.utils;
|
||
|
|
||
|
import android.os.Handler;
|
||
|
import android.os.Looper;
|
||
|
import android.widget.Toast;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class ToastManager {
|
||
|
static ToastManager sInstance;
|
||
|
Handler handler = new Handler(Looper.getMainLooper());
|
||
|
|
||
|
public static ToastManager getInstance() {
|
||
|
if (sInstance == null) {
|
||
|
synchronized (ToastManager.class) {
|
||
|
if (sInstance == null) {
|
||
|
sInstance = new ToastManager();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return sInstance;
|
||
|
}
|
||
|
|
||
|
public void show(final CharSequence charSequence) {
|
||
|
this.handler.post(new Runnable() { // from class: tech.rabbit.common.utils.ToastManager.1
|
||
|
@Override // java.lang.Runnable
|
||
|
public void run() {
|
||
|
Toast.makeText(RabbitCommon.sContext, charSequence, 0).show();
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|