J'ai construit un simple lecteur de musique dans Android. La vue pour chaque chanson contient une SeekBar, implémentée comme ceci :
public class Song extends Activity implements OnClickListener,Runnable {
private SeekBar progress;
private MediaPlayer mp;
// ...
private ServiceConnection onService = new ServiceConnection() {
public void onServiceConnected(ComponentName className,
IBinder rawBinder) {
appService = ((MPService.LocalBinder)rawBinder).getService(); // service that handles the MediaPlayer
progress.setVisibility(SeekBar.VISIBLE);
progress.setProgress(0);
mp = appService.getMP();
appService.playSong(title);
progress.setMax(mp.getDuration());
new Thread(Song.this).start();
}
public void onServiceDisconnected(ComponentName classname) {
appService = null;
}
};
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.song);
// ...
progress = (SeekBar) findViewById(R.id.progress);
// ...
}
public void run() {
int pos = 0;
int total = mp.getDuration();
while (mp != null && pos<total) {
try {
Thread.sleep(1000);
pos = appService.getSongPosition();
} catch (InterruptedException e) {
return;
} catch (Exception e) {
return;
}
progress.setProgress(pos);
}
}
Cela fonctionne bien. Maintenant, je veux un timer qui compte les secondes/minutes de la progression de la chanson. Je mets donc un TextView
dans la mise en page, obtenez-le avec findViewById()
en onCreate()
et mettez ça dans run()
après progress.setProgress(pos)
:
String time = String.format("%d:%d",
TimeUnit.MILLISECONDS.toMinutes(pos),
TimeUnit.MILLISECONDS.toSeconds(pos),
TimeUnit.MINUTES.toSeconds(TimeUnit.MILLISECONDS.toMinutes(
pos))
);
currentTime.setText(time); // currentTime = (TextView) findViewById(R.id.current_time);
Mais cette dernière ligne me donne l'exception :
Android.view.ViewRoot$CalledFromWrongThreadException : Seul le thread d'origine qui a créé une hiérarchie de vues peut toucher ses vues.
Pourtant, je fais essentiellement la même chose ici que je fais avec les SeekBar
- créer la vue dans onCreate
puis en le touchant dans run()
- et ça ne me donne pas cette plainte.