package com.moral.yunfushao.utils;
|
|
import android.widget.Toast;
|
|
import com.moral.yunfushao.MainApp;
|
|
|
/**
|
* Toast工具类
|
* 作者: wangcj
|
* 日期: 2017/2/23.
|
*/
|
|
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();
|
}
|
|
}
|