GithubHelp home page GithubHelp logo

coroutineextension's People

Contributors

mistletoe5215 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

nicktet originlan

coroutineextension's Issues

未开始调用FlowCountDownTimer.start()之前切换Fragment导致调用start()时直接走already completed的判断

出现的情况:
采用ViewPager2加载2个不同的Fragment,其中一个Fragment中的点击调用倒计时工具,在未开始调用start前来回切换Fragment,调用倒计时导致直接走'already completed'的判断,其中倒计时的pause和resume方法分别放在Fragment的onPause和onResume方法中

    private fun sendCode(phone: String) {
        viewModel.sendCode(phone).catch {
            countDownTimer.cancel()
            binding.sendCode.text = "发送失败,重新发送"
            binding.sendCode.isEnabled = true
            toast(it.message.toString())
        }.asLiveDataUI(this, {
            toast("发送成功,请注意查看短信验证码")
            countDownTimer.start()
            countDownTimer.countDown {
                binding.sendCode.text = String.format(getString(R.string.next_send_code), it)
                binding.sendCode.isEnabled = false
            }.complete {
                binding.sendCode.text = "重新发送"
                binding.sendCode.isEnabled = true
                countDownTimer.cancel()
            }
        })
    }

    override fun onPause() {
        super.onPause()
        countDownTimer.pause()
    }

    override fun onResume() {
        super.onResume()
        countDownTimer.resume()
    }

    override fun onDestroy() {
        super.onDestroy()
        countDownTimer.cancel()
    }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.