Scroll to navigation

SDL_AndroidShowToast(3) SDL3 FUNCTIONS SDL_AndroidShowToast(3)

NAME

SDL_AndroidShowToast - Shows an Android toast notification.

SYNOPSIS

#include "SDL3/SDL.h"
int SDL_AndroidShowToast(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

text message to be shown
0=short, 1=long
where the notification should appear on the screen.
set this parameter only when gravity >=0
set this parameter only when gravity >=0

RETURN VALUE

Returns 0 on success or a negative error code on failure; call

SDL_GetError () for more information.

AVAILABILITY

This function is available since SDL 3.0.0.

SDL 3.1.0 SDL