Я створив простий музичний плеєр в Android. Перегляд кожної пісні містить SeekBar, реалізований так:
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);
}
}
Це чудово працює. Тепер я хочу, щоб таймер відлічив секунди / хвилини ходу пісні. Так що я поклав TextView
в макеті, отримати його findViewById()
в onCreate()
, і помістити його в run()
після того, як 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);
Але останній рядок дає мені виняток:
android.view.ViewRoot $ CalledFromWrongThreadException: Тільки оригінальна нитка, яка створила ієрархію перегляду, може торкатися її поглядів.
Але я роблю в основному те саме, що я роблю з SeekBar
- створюю вигляд onCreate
, потім торкаюся його run()
- і це не дає мені цієї скарги.
error.setText(res.toString());
всередині методу Run (), але я не міг використовувати Рез , тому що це був не остаточний .. занадто погано