mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
5.0 KiB
5.0 KiB
id, title, original_id
| id | title | original_id |
|---|---|---|
| version-0.50-toastandroid | toastandroid | toastandroid |
ToastAndroid #
This exposes the native ToastAndroid module as a JS module. This has a function 'show' which takes the following parameters:
- String message: A string with the text to toast
- int duration: The duration of the toast. May be ToastAndroid.SHORT or ToastAndroid.LONG
There is also a function showWithGravity to specify the layout gravity. May be
ToastAndroid.TOP, ToastAndroid.BOTTOM, ToastAndroid.CENTER.
The 'showWithGravityAndOffset' function adds on the ability to specify offset These offset values will translate to pixels.
Basic usage:
ToastAndroid.show('A pikachu appeared nearby !', ToastAndroid.SHORT);
ToastAndroid.showWithGravity('All Your Base Are Belong To Us', ToastAndroid.SHORT, ToastAndroid.CENTER);
ToastAndroid.showWithGravityAndOffset('A wild toast appeared!', ToastAndroid.LONG, ToastAndroid.BOTTOM, 25, 50);
Methods #
Properties #
Improve this page by sending a pull request!