Android.OS.Handler.PostDelayed Method
Causes the Runnable r to be added to the message queue, to be run after the specified amount of time elapses.

Syntax

[Android.Runtime.Register("postDelayed", "(Ljava/lang/Runnable;J)Z", "")]
public bool PostDelayed (Java.Lang.IRunnable r, long delayMillis)

Parameters

r
The Runnable that will be executed.
delayMillis
The delay (in milliseconds) until the Runnable will be executed.

Returns

Documentation for this section has not yet been entered.

Remarks

Causes the Runnable r to be added to the message queue, to be run after the specified amount of time elapses. The runnable will be run on the thread to which this handler is attached. The time-base is SystemClock.UptimeMillis. Time spent in deep sleep will add an additional delay to execution.

[Android Documentation]

Requirements

Namespace: Android.OS
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1