ewko
ewko

Reputation: 13

How to make a score counter for my Android app

I'm quite a beginner with java and Android in general so I would like to ask how to easily make a score counter that would change every millisecond, so every millisecond they survive the score counter moves up 1. Something like this.

Upvotes: 1

Views: 666

Answers (1)

Vikram Bodicherla
Vikram Bodicherla

Reputation: 7123

I assume you are not talking about building the UI. Here's how you can use a TimerTask: http://developer.android.com/resources/articles/timed-ui-updates.html

Upvotes: 2

Related Questions