标签:
public class CommUtils { private static Toast toast = null; public static void showToast(int text) { if (toast == null) { toast = Toast.makeText(NetApplication.getInstance() .getApplicationContext(), text, Toast.LENGTH_SHORT); } else { toast.setText(text); } toast.show(); } }
标签:
原文地址:http://blog.csdn.net/ruyi366/article/details/44491269