Android Countdown Timer to Date

前端 未结 7 1865
死守一世寂寞
死守一世寂寞 2020-12-14 11:34

I am trying to make a countdown timer for a game/date in android. I want to create a timer that displays the days, hours, minutes, and seconds to a date I specify with a fin

7条回答
  •  借酒劲吻你
    2020-12-14 12:03

    Take a look at this post, I think it will help you out: How to check day in android?

    Using the java.util.Calendar class, I think you should be able to figure out how to do the rest.

    http://developer.android.com/reference/java/util/Date.html -- you can use the getDate(), getHours(), getMinutes(), getSeconds(), etc... Hope that helps!

提交回复
热议问题