参考博客:Android开发,Toast重复显示(显示时间过长)解决方法
package com.dr.app.drseamoniter.toast; import android.content.Context; import android.os.Handler; import android.widget.Toast; /** * Created by Administrator on 15-9-14. */ public class MessageToast { private static Toast mToast; private static Handler mHandler = new Handler(); private static Runnable r = new Runnable() { public void run() { mToast.cancel(); } }; public static void showToast(Context mContext, String text, int duration) { mHandler.removeCallbacks(r); if (mToast != null) mToast.setText(text); else mToast = Toast.makeText(mContext, text, Toast.LENGTH_SHORT); mHandler.postDelayed(r, duration); mToast.show(); } public static void showToast(Context mContext, int resId, int duration) { showToast(mContext, mContext.getResources().getString(resId), duration); } }