table of contents
SDL_ShowAndroidToast(3) | SDL3 FUNCTIONS | SDL_ShowAndroidToast(3) |
NAME¶
SDL_ShowAndroidToast - Shows an Android toast notification.
SYNOPSIS¶
#include <SDL3/SDL_system.h>
bool SDL_ShowAndroidToast(const char *message, int duration, int gravity, int xoffset, int yoffset);
DESCRIPTION¶
Toasts are a sort of lightweight notification that are unique to Android.
https://developer.android.com/guide/topics/ui/notifiers/toasts
Shows toast in UI thread.
For the gravity parameter, choose a value from here, or -1 if you don't have a preference:
https://developer.android.com/reference/android/view/Gravity
FUNCTION PARAMETERS¶
RETURN VALUE¶
for more information.
THREAD SAFETY¶
It is safe to call this function from any thread.
AVAILABILITY¶
This function is available since SDL 3.2.0.
SDL 3.2.14 | Simple Directmedia Layer |