මම ඇන්ඩ්රොයිඩ් හි සරල සංගීත වාදකයක් ගොඩනගා ඇත්තෙමි. සෑම ගීතයකම දර්ශනයේ සීක්බාර් අඩංගු වන අතර එය මේ ආකාරයට ක්රියාත්මක වේ:
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());
ධාවන () ක්රමයක් කිරීමට අවශ්ය වීමයි , නමුත් මට එය භාවිතා කිරීමට නොහැකි වූයේ එය අවසාන නොවන නිසාය .. ඉතා නරකයි