package com.moral.screen.httputils;
|
|
import android.widget.Toast;
|
|
import com.moral.screen.MainApp;
|
|
|
/**
|
* Toast工具类
|
*/
|
|
public class T {
|
|
public static void show(String text) {
|
Toast.makeText(MainApp.theApp, text, Toast.LENGTH_SHORT).show();
|
}
|
|
public static void show(Integer text) {
|
Toast.makeText(MainApp.theApp, String.valueOf(text), Toast.LENGTH_SHORT).show();
|
}
|
|
public static void show(Object text) {
|
Toast.makeText(MainApp.theApp, text.toString(), Toast.LENGTH_SHORT).show();
|
}
|
|
}
|