Android'de basit bir müzik çalar geliştirdim. Her şarkının görünümü aşağıdaki gibi uygulanan bir SeekBar içerir:
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);
}
}
Bu iyi çalışıyor. Şimdi şarkının ilerleyişinin saniye / dakikalarını sayan bir zamanlayıcı istiyorum. Ben koymak Yani TextView
düzeninde, bunu almak findViewById()
içinde onCreate()
ve bu koymak run()
sonra 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);
Ama bu son satır bana bir istisna veriyor:
android.view.ViewRoot $ CalledFromWrongThreadException: Yalnızca bir görünüm hiyerarşisi oluşturan orijinal iş parçacığı görünümlerine dokunabilir.
Yine de temelde burada yaptığımla aynı şeyi yapıyorum SeekBar
- görünümü yaratmak onCreate
, sonra ona dokunmak run()
- ve bana bu şikayeti vermiyor.
error.setText(res.toString());
run () yöntemi içinde yapmak istedim , ama nihai değildi çünkü res kullanamadık .. çok kötü