Toasty icon indicating copy to clipboard operation
Toasty copied to clipboard

Request: support Android 11 (R - API 31)

Open AndroidDeveloperLB opened this issue 5 years ago • 1 comments

Sadly on Android R, you can't set a custom View for a Toast (when targeting API 31) :

https://developer.android.com/reference/android/widget/Toast#setView(android.view.View) https://developer.android.com/reference/android/widget/Toast#getView()

Please offer something that mimics the standard Toast's look&feel, so that at least we could have it shown within the app, as a normal View. Maybe something similar to what we have when we long press the action items on the toolbar:

dfu6CwFaPM.zip

Custom Toasts are useful anyway usually only when the user is inside the app...

AndroidDeveloperLB avatar Nov 28 '20 13:11 AndroidDeveloperLB

Actually, you still can set a custom view, and only with a custom view you can set gravity, margins etc. Only drawback is, that toasts with custom views will not be shown when the owning application is in the background. But as long as the app's in the foreground we're good (for now).

ridcully99 avatar Feb 12 '21 11:02 ridcully99