0

我有一个IncomingCallReceiverwhich extends BroadcastReciever

在里面onReceive,我想使用 Toast 显示一些信息,直到用户接听或拒绝来电。

当电话响起时,我正在使用 Loops 展示 toast。

当用户接到电话或拒绝来电时,我正在取消 Toast。

但是 Toast 不会被取消。

 public class IncommingCallReceiver extends BroadcastReceiver
         {

            Context context;
        static Toast toast;

            @Override
        public void onReceive(Context mContext, Intent intent)
         {
        String state = intent.getStringExtra(TelephonyManager.EXTRA_STATE);

        TextView  tv=new TextView(mContext);
        tv.setBackgroundColor(color.background_light);
        Log.i("On Recieve"," ");
        //Toast toast=new Toast(mContext);
        if(state==null)
            return;
        if(state.equals(TelephonyManager.EXTRA_STATE_RINGING))
        {
            for(int i=0;i<7;i++)
            {
               toast=   Toast.makeText(mContext, "Ringing",Toast.LENGTH_LONG);
               toast.show();
            }


        }
         if(state.equals(TelephonyManager.EXTRA_STATE_OFFHOOK))
         {
            // Toast.makeText(mContext, "Recieved", Toast.LENGTH_LONG).show();
             toast.cancel();

         }
        if (state.equals(TelephonyManager.EXTRA_STATE_IDLE))
        {
            //Toast.makeText(mContext, "IDLE", Toast.LENGTH_LONG).show();
             toast.cancel();
        }






    }
 }

那么当用户接听或拒绝来电时如何取消toast呢?

4

1 回答 1

1

问题是您连续创建了几个 toast - 当一个 toast 完成时,其余的按顺序显示。您实际上是在创建 7 个不同的 Toast 对象,但只保留对最后一个对象的引用。

您需要做的是使用一个 Toast;而不是Toast.LENGTH_LONG,使用不同的值。那你应该可以打电话了cancel()

于 2013-01-04T07:34:02.530 回答