i have a listview contains text and imageview , this imageview implements onClickListener() for playing some media , when the user click the imageview the audio file play and the imageview play button change to pause button until this point it works so fine for me but when i scroll down to the last item in the listview the pause button returns to default buton(play button) and the audio file keeps playing .. why this is happening ? thanks a lot
//--------------- Play Button -------------------------------------------------------------------
b.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//--------------determine the id to play ----------------------------------
idd = items.get(position).getId();
FilteringNums f = new FilteringNums();
f.convert(idd);
String attribute = f.r;
//-------------------------------------------------------------------------
int resourceId = arg0.getResources().getIdentifier(attribute+position, "raw", activity.getPackageName());
final MediaPlayer Mp =MediaPlayer.create(getContext(), resourceId);
try{
int r = Mp.getCurrentPosition();
Mp.seekTo(r);
Mp.start();
b.setEnabled(false);
b.setVisibility(b.INVISIBLE);
pause.setVisibility(pause.VISIBLE);
//------------------------------------------------------------------------------------------------
//-------------- Pause Button ---------------------------------------------------------
pause.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
if(Mp.isPlaying())
{
Mp.pause();
Log.d("media player", "is paused");
resume.setVisibility(resume.VISIBLE);
stop.setVisibility(stop.VISIBLE);
}
}
});
this the viewHolder
and this the implementation of it