What is the setLoopCount() method?
What is the setLoopCount() method?
Rating:
The setLoopCount() method is a method of the Player interface. This method is used to set the number of times the Player will loop back and play the media specified in the createPlayer() method. The general syntax of this method is as follows:
Here, the play parameter sets the number of times the specified media will be played. By default its value is one, i.e., the specified media will be played only once from start to end.
If the value passed is N, where N is a positive integer greater than one, then the media will be played N-1 times.
If the value is 0, then an IllegalArgumentException will be thrown.
If the value is -1, then the loop will continuously run, playing the media indefinitely.
Rating:
Other articles
- What is the Connection interface?
- Skills Required
- What is the pauseApp() method?
- What is the closeRecordStore() method?
- What is the getHeight() method?