I found out that in the fourth android there are no toasts, how can I implement them?
upd: I wrote in OnCreate :
mToast = Toast.makeText( this , "" , Toast.LENGTH_LONG ); then where do i do
mToast.cancel(); mToast.setText("Текст"); mToast.show(); (All this in order to not show more than one toast!) In 2.3 it works in 4 - no!
Maybe someone will tell you how to do it correctly so that the toasts are not accumulated, and when called, the previous one was canceled?