Quick Start Guide
The Eidolon.Android
utility class provides utility methods for displaying toast messages in Unity Android applications. This namespace will be the foundation for all other future Android utility functions.
1. Show Short Toast
Shows a short-duration toast message.
// Show a short-duration toast message.ToastManager.ShowShortToast("Short toast message");
2. Show Long Toast
Shows a long-duration toast message.
// Shows a long-duration toast message.ToastManager.ShowLongToast("Long toast message");
3. Show Custom Duration Toast
Shows a toast message with a custom duration.
// Shows a toast message with a custom duration. In this example it's 3 secondsToastManager.ShowCustomDurationToast("Custom duration toast message", 3);