标签:create toast pac show port 常用 stat nba ted
android 中常用系统吐司工具类
package cn.yhq.utils;
import android.content.Context;
import android.widget.Toast;
/**
* Created by hanbao on 2018/9/22.
*/
public class ToastUtils {
public static void showToast(Context context, String message) {
Toast.makeText(context, message, Toast.LENGTH_LONG).show();
}
public static void showToast(Context context, int message) {
Toast.makeText(context, message, Toast.LENGTH_LONG).show();
}
}
标签:create toast pac show port 常用 stat nba ted
原文地址:https://www.cnblogs.com/monkey0928/p/9901772.html