yadav-rahul / TastyToast

:bread: Make your native android Toasts Tasty
2.04k stars 355 forks source link

Multiple clicks appear too long #4

Closed CherryLover closed 8 years ago

CherryLover commented 8 years ago

If you accidentally multi-point several times, really very uncomfortable experience Forgive my English is bad, directly on the code. public static void showToast(Context context, String content) { if (toast == null) { toast = Toast.makeText(context, content, Toast.LENGTH_SHORT); } else { toast.setText(content); } toast.show(); } I‘m learn from guolin

yadav-rahul commented 8 years ago

@CherryLover thanks for pitching your idea but see android has its own way of dealing with several toasts simultaneously. We can modify we it but then the basic experience of toast will be violated.

Further I will consider your opinion and if it goes well then it will be updated in the next version of TastyToast.