Ho scritto una classe del timer. E voglio sovrascrivere il suo metodo toString
. Ma quando chiamo il metodo toString
, restituisce comunque la super implementazione. (Nome completo della classe)Impossibile eseguire l'override del metodo toString
Ecco la mia classe Timer:
import android.os.Handler;
import android.widget.TextView;
public class Timer implements Comparable<Timer> {
private Handler handler;
private boolean paused;
private TextView text;
private int minutes;
private int seconds;
private final Runnable timerTask = new Runnable() {
@Override
public void run() {
if (!paused) {
seconds++;
if (seconds >= 60) {
seconds = 0;
minutes++;
}
text.setText (toString()); //Here I call the toString
Timer.this.handler.postDelayed (this, 1000);
}
}
};
//Here is the toString method, anything wrong?
@Override
public String toString() {
if (Integer.toString (seconds).length() == 1) {
return minutes + ":0" + seconds;
} else {
return minutes + ":" + seconds;
}
}
public void startTimer() {
paused = false;
handler.postDelayed (timerTask, 1000);
}
public void stopTimer() {
paused = true;
}
public void resetTimer() {
stopTimer();
minutes = 0;
seconds = 0;
text.setText (toString()); //Here is another call
}
public Timer (TextView text) {
this.text = text;
handler = new Handler();
}
@Override
public int compareTo(Timer another) {
int compareMinutes = ((Integer)minutes).compareTo (another.minutes);
if (compareMinutes != 0) {
return compareMinutes;
}
return ((Integer)seconds).compareTo (another.seconds);
}
}
Vedo che il testo della visualizzazione del testo è il nome completo della classe Timer
. Ho anche provato this.toString
ma non funziona neanche.
stampata in base al valore dello schermo "Integer.toString (secondi) .length". quindi "Log.i (" value "," "+ Integer.toString (seconds) .length);" ?? –