最佳答案
我在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 MediaPlayerprogress.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
,在onCreate()
中放了findViewById()
,在progress.setProgress(pos)
之后放了run()
:
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()
中触摸它——它没有给我这个抱怨。