Toast toast = 
         Toast.makeText(this, "toast content here",  Toast.LENGTH_SHORT); // or something alike
toast.setGravity(Gravity.TOP | Gravity.CENTER, 80, 80); toast.show();

解决方案 »

  1.   


    我说同时显示啊,亲,至少两个toast.
      

  2.   

            if (mNextView == null) {
                throw new RuntimeException("setView must have been called");
            }        INotificationManager service = getService();
            String pkg = mContext.getPackageName();
            TN tn = mTN;
            tn.mNextView = mNextView;        try {
                service.enqueueToast(pkg, tn, mDuration);
            } catch (RemoteException e) {
                // Empty
            }看名字就晓得 toast 是放到一个队列里面 显示的 自己写窗口吧