Minimal example wanted showing texview incrementing a count on a timer?
- by BobG
In c it would be:
while(1){
i++;
printf("%d \r",i);
}
I assume the textview and the variable and the timer get created in oncreate, then there is a timer handler with an increment and a settext and a sleep? Seeing how to do this in androidese would really clarify things I think. Thanks.