VoiceInteractionService.OnReady 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.
Called during service initialization to tell you when the system is ready to receive interaction from it.
[Android.Runtime.Register("onReady", "()V", "GetOnReadyHandler")]
public virtual void OnReady ();
[<Android.Runtime.Register("onReady", "()V", "GetOnReadyHandler")>]
abstract member OnReady : unit -> unit
override this.OnReady : unit -> unit
- Attributes
Remarks
Called during service initialization to tell you when the system is ready to receive interaction from it. You should generally do initialization here rather than in #onCreate
. Methods such as #showSession
will not be operational until this point.
Java documentation for android.service.voice.VoiceInteractionService.onReady()
.
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.