Android Handler & Looper [Android Bits #14]

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ม.ค. 2025

ความคิดเห็น • 5

  • @chiragparekh1393
    @chiragparekh1393 3 หลายเดือนก่อน +1

    Thank you for the great explanation 🙏 Amazing work

  • @ganeshrajpadhayay3714
    @ganeshrajpadhayay3714 6 หลายเดือนก่อน +1

    Great explanation!

  • @sam-ri-dha
    @sam-ri-dha 6 หลายเดือนก่อน +1

    Very nice explanation... thank you

  • @thekingsacrifice
    @thekingsacrifice 6 หลายเดือนก่อน

    Hi. Great explanation... I have one question, why we not use boolean variable to break while loop instead of poison object?

    • @nemamusernamea
      @nemamusernamea 5 หลายเดือนก่อน +1

      I think because if we would use a bool the tasks in queue that are left over will not be able to execute. For example if we have 3 tasks in queue and set the bool to false those leftover tasks will not execute. In this way we put the poison task at the end of the queue, so when all tasks get finished only then will the Looper finish looping.