Can I cancel previous Toast when I want to show an other Toast?

后端 未结 11 1390
粉色の甜心
粉色の甜心 2020-12-05 17:18

In my app, I construct a calendar widget for my activity, when I scroll it to previous or next month, I let it make a toast and show it.

The question is, the toast n

11条回答
  •  死守一世寂寞
    2020-12-05 18:13

    Toast has a method to hide current toast message

    public void cancel() {
        mTN.hide();
    }
    

    Try calling t.cancel() when it is necessary.

提交回复
热议问题