SDL Wiki
(This is the documentation for SDL3, which is the current stable version. SDL2 was the previous version!)

SDL_ShowAndroidToast

Shows an Android toast notification.

Header File

Defined in <SDL3/SDL_system.h>

Syntax

bool SDL_ShowAndroidToast(const char *message, int duration, int gravity, int xoffset, int yoffset);

Function Parameters

const char * message text message to be shown.
int duration 0=short, 1=long.
int gravity where the notification should appear on the screen.
int xoffset set this parameter only when gravity >=0.
int yoffset set this parameter only when gravity >=0.

Return Value

(bool) Returns true on success or false on failure; call SDL_GetError() for more information.

Remarks

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

Thread Safety

It is safe to call this function from any thread.

Version

This function is available since SDL 3.1.3.


CategoryAPI, CategoryAPIFunction, CategorySystem


[ edit | delete | history | feedback | raw ]

[ front page | index | search | recent changes | git repo | offline html ]

All wiki content is licensed under Creative Commons Attribution 4.0 International (CC BY 4.0).
Wiki powered by ghwikipp.