I\'ve built a simple music player in Android. The view for each song contains a SeekBar, implemented like this:
public class Song extends Activity implement
Kotlin Answer
We have to use UI Thread for the job with true way. We can use UI Thread in Kotlin:
runOnUiThread(Runnable { //TODO: Your job is here..! })
@canerkaseler