rsend code in timer kotlin

val timer:textview=findviewbyid (r.id.textview) //The timer here is the textview i want to control to display the countdownval msubscription:subscription?= null //subscription object, used to unsubscribe,Preventing memory leaks//Start the countdown,Implemented with rxjava2 private fun timer () {  val count=59l  flowable.interval (0, 1, timeunit.seconds) //Set 0 delay, send one data every one second    .onbackpressurebuffer () //plus backpressure strategy    .take (count) //Set the number of loops    .map {along->     count-along //    }    .observeon (androidschedulers.mainthread ()) //Operation ui is mainly in ui thread    .subscribe (object:subscriber<long>{     override fun onsubscribe (s:subscription?) {      timer.isenabled=false //Set as not clickable when sending data      timer.textcolor=resources.getcolor (color.gray) //The background color is set to gray      msubscription=s      s?.request (long.max_value) //Set the number of request events,Important, must call     }     override fun onnext (along:long?) {      timer.text="Resend after ${along} s" //After receiving one, it will operate once ui     }     override fun oncomplete () {      timer.text="click to resend"      timer.isenabled=true      timer.textcolor=color.white      msubscription?.cancel () //Cancel subscription,Preventing memory leaks     }     override fun onerror (t:throwable?) {      t?.printstacktrace ()     }    }) }

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source