您的位置: 首页 > IT文章 > Toast 工具 Toast 工具 分类: IT文章 • 2022-03-26 21:17:06 public class Utils { private static Toast toast; public static void showtoast(Context context,String str){ if(toast==null){ toast=Toast.makeText(context,str,Toast.LENGTH_SHORT); }else{ toast.setText(str); } toast.show(); } }