标签:java show make else length art utils ext comm
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(); } }
标签:java show make else length art utils ext comm
原文地址:http://www.cnblogs.com/gavanwanggw/p/6718462.html