I occasionally have a toast notification that is too long to read in the given amount of time that it is displayed. Is there any way to change the length of time these notifications display?
Also, is there any way to view these notifications after they are gone? This would be ideal, like an app or a folder that logs all the toast notifications where I can review them later.
Toast.LENGTH_SHORT
andToast.LENGTH_LONG
. The entire Toast class would need to be overridden to allow custom lengths. – aleksikallio Aug 23 '13 at 05:31Dialog
implementations that mimic toasts both functionally and visually, but with custom timings. Not a true toast, but the end-user doesn't know that. – aggregate1166877 Aug 23 '13 at 11:08