SoundPool.Resume(Int32) 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.
Resume a playback stream.
[Android.Runtime.Register("resume", "(I)V", "")]
public void Resume (int streamID);
[<Android.Runtime.Register("resume", "(I)V", "")>]
member this.Resume : int -> unit
Parameters
- streamID
- Int32
a streamID returned by the play() function
- Attributes
Remarks
Resume a playback stream.
Resume the stream specified by the streamID. This is the value returned by the play() function. If the stream is paused, this will resume playback. If the stream was not previously paused, calling this function will have no effect.
Java documentation for android.media.SoundPool.resume(int)
.
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.