надеюсь найти решение моей проблемы, поэтому у меня есть индикатор выполнения, показывающий при нажатии на элемент ListView и во время воспроизведения аудиофайла, проблема в том, что при завершении воспроизведения аудиофайла приложение выдает ошибку и выдает ошибку в logcat:
12-11 14: 32: 17.330 6190-6216 / com.example.android.app E / AndroidRuntime: FATAL EXCEPTION: Thread-2 Process: com.example.android.app, PID:6190 java.lang.NullPointerException: попытка вызвать виртуальный метод «boolean android.media.MediaPlayer.isPlaying ()» для нулевой ссылки на объект в com.example.android.app.MainActivity $ 4.run (MainActivity.java:371) вjava.lang.Thread.run (Thread.java:764)
вот код для индикатора выполнения:
Runnable _progressUpdater;
private void createProgressParentThread() {
_progressUpdater = new Runnable() {
@Override
public void run() {
while(mMediaPlayer.isPlaying()) {
try
{
int current = 0;
int total = mMediaPlayer.getDuration();
progressBarParent.setMax(total);
Log.d("ThangTB", "total:"+total);
progressBarParent.setIndeterminate(false);
while(mMediaPlayer!=null && current<total){
try {
Thread.sleep(200); //Update once per second
current = mMediaPlayer.getCurrentPosition();
//Removing this line, the track plays normally.
progressBarParent.setProgress(current);
} catch (InterruptedException e) {
} catch (Exception e){
}
}
}
catch(Exception e)
{
//Don't want this thread to intefere with the rest of the app.
}
}
if (!mMediaPlayer.isPlaying()) {
try {
Log.d("ThangTB", "callllllllllllllllll");
GONELAYOUT();
} catch (Exception e) {
e.printStackTrace();
}
}
}
};
Thread thread = new Thread(_progressUpdater);
thread.start();
}
public void GONELAYOUT(){
this.runOnUiThread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
progressBarParent.setProgress(0);
linearLayout_contentProgress.setVisibility(View.GONE);
}
});
}
public void VISIBLELAYOUT(){
this.runOnUiThread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
progressBarParent.setProgress(0);
linearLayout_contentProgress.setVisibility(View.VISIBLE);
}
});
}
, и я вызываю эти методы внутри onItemClick:
mMediaPlayer.start();
VISIBLELAYOUT();
createProgressParentThread();