showToast

fun showToast(message: String, showLonger: Boolean = false)

Send a toast from any Thread

Parameters

message

Message to show.

showLonger

Whether to show toast for an extended period of time.


fun showToast(ctx: Context, message: String, showLonger: Boolean = false)

Deprecated

Use {@link #showToast(String, boolean)}

Replace with

showToast(message, showLonger)

Send a toast from any Thread

Parameters

message

Message to show.

showLonger

Whether to show toast for an extended period of time.