View.PostOnAnimation(IRunnable) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Causes the Runnable to execute on the next animation time step.
[Android.Runtime.Register("postOnAnimation", "(Ljava/lang/Runnable;)V", "GetPostOnAnimation_Ljava_lang_Runnable_Handler")]
public virtual void PostOnAnimation (Java.Lang.IRunnable? action);
[<Android.Runtime.Register("postOnAnimation", "(Ljava/lang/Runnable;)V", "GetPostOnAnimation_Ljava_lang_Runnable_Handler")>]
abstract member PostOnAnimation : Java.Lang.IRunnable -> unit
override this.PostOnAnimation : Java.Lang.IRunnable -> unit
Parameters
- action
- IRunnable
The Runnable that will be executed.
- Attributes
Remarks
Causes the Runnable to execute on the next animation time step. The runnable will be run on the user interface thread.
Java documentation for android.view.View.postOnAnimation(java.lang.Runnable)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
See also
- <xref:Android.Views.View.PostOnAnimationDelayed(Java.Lang.IRunnable%2c+System.Int64)>
- RemoveCallbacks(IRunnable)