I use RecyclerView to show a list of mp3 songs. Now the problem is when I try to delete a song. The song was deleted successfully, but the item remains in RecyclerView, and I think that it recreates itself, in fact I do not understand what it is. Here is a screenshot of what is happening.

As you can see in the screenshot above. I am trying to delete a song, but the song remains on the list, and another list is also created behind it. I do not know what will happen. here is my SongFragment code: -
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
activityView = inflater.inflate(R.layout.fragment_song, container, false);
swipeRefreshLayout = activityView.findViewById(R.id.swiperefresh);
if(arrayList == null){
SongsLibrary songsLibrary = new SongsLibrary();
songsLibrary.getSongs(getActivity());
}
mIntentFilter = new IntentFilter();
mIntentFilter.addAction(deteleSong);
setUpMusic();
return activityView;
}
private void setUpMusic() {
RecyclerView songRecyclerView = activityView.findViewById(R.id.song_list);
songRecyclerView.setNestedScrollingEnabled(false);
songRecyclerView.setHasFixedSize(true);
LinearLayoutManager linearLayoutManager = new LinearLayoutManager(getActivity());
songRecyclerView.setLayoutManager(linearLayoutManager);
songRecyclerView.setHasFixedSize(true);
SongAdapter mAdapter = new SongAdapter(getActivity(), getMusic());
songRecyclerView.setAdapter(mAdapter);
}
public List<SongObject> getMusic() {
List<SongObject> recentSongs = new ArrayList<>();
names = new String[arrayList.size()];
names = arrayList.toArray(names);
singer = new String[artistName.size()];
singer = artistName.toArray(singer);
art = new String[songThumb.size()];
art = songThumb.toArray(art);
for(int i = 0; i < arrayList.size(); i++){
recentSongs.add(new SongObject(names[i], singer[i], art[i]));
}
return recentSongs;
}
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
switch (action)
{
case deteleSong:
int postion = intent.getIntExtra("position",0);
break;
}
}
};
@Override
public void onDestroy() {
super.onDestroy();
}
@Override
public void onPause() {
super.onPause();
if(broadcastReceiver != null)
getActivity().unregisterReceiver(broadcastReceiver);
}
SongAdapter.java
public class SongAdapter extends RecyclerView.Adapter<SongViewHolder>{
private Context context;
private List<SongObject> allSongs;
MyEditText options;
SongViewHolder songViewHolder;
public SongAdapter(Context context, List<SongObject> allSongs) {
this.context = context;
this.allSongs = allSongs;
}
@Override
public SongViewHolder onCreateViewHolder(ViewGroup parent, final int viewType) {
View view = LayoutInflater.from(context).inflate(R.layout.song_list_layout, parent, false);
options = view.findViewById(R.id.options);
return new SongViewHolder(view);
}
@Override
public void onBindViewHolder(SongViewHolder holder, final int position) {
songViewHolder = holder;
holder.setIsRecyclable(false);
options.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
showOptions(view, position);
}
});
SongObject songs = allSongs.get(position);
holder.songTitle.setText(songs.getSongTitle());
holder.songAuthor.setText(songs.getSongAuthor());
Glide.with(context)
.load(songs.getSongCover())
.asBitmap()
.placeholder(R.drawable.player)
.error(R.drawable.player)
.override(200,200)
.fitCenter()
.diskCacheStrategy(DiskCacheStrategy.ALL)
.into(holder.songImage);
}
private void showOptions(final View v, final int pos) {
PopupMenu popup = new PopupMenu(context, v);
MenuInflater inflater = popup.getMenuInflater();
inflater.inflate(R.menu.song_options, popup.getMenu());
popup.show();
popup.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
@Override
public boolean onMenuItemClick(MenuItem menuItem) {
int id = menuItem.getItemId();
switch (id) {
case R.id.optionPlay:
play(context, pos);
break;
case R.id.optionDelete:
showAlert(context, pos);
break;
case R.id.optionDetails:
break;
}
return true;
}
});
}
public void play(Context context, int pos){
Intent serviceIntent = new Intent(context, NotificationService.class);
serviceIntent.setAction(Constants.ACTION.STARTFOREGROUND_ACTION);
serviceIntent.putExtra("pos", pos);
serviceIntent.putExtra("search","");
context.startService(serviceIntent);
Intent broadcastIntent = new Intent();
broadcastIntent.setAction(MusicActivity.mMediaStart);
broadcastIntent.putExtra("isStart", 1);
context.sendBroadcast(broadcastIntent);
}
private void showAlert(final Context context, final int position){
AlertDialog.Builder builder = new AlertDialog.Builder(context, R.style.Theme_AppCompat_Light_Dialog_Alert);
builder.setMessage("Do you want to delete this song?")
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
deleteSong(context, position);
}
})
.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
}
});
builder.show();
}
public void deleteSong(Context ctx, int pos){
ArrayList<String> songList = songPath;
final String songName = songList.get(pos);
final int songPos = pos;
new android.os.Handler().postDelayed(new Runnable(){
@Override
public void run() {
String[] projection = { MediaStore.Audio.Media._ID };
String selection = MediaStore.Audio.Media.DATA + " = ?";
String[] selectionArgs = new String[] { songName };
Uri queryUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
ContentResolver contentResolver = context.getContentResolver();
Cursor c = contentResolver.query(queryUri, projection, selection, selectionArgs, null);
if (c.moveToFirst()) {
long id = c.getLong(c.getColumnIndexOrThrow(MediaStore.Audio.Media._ID));
Uri deleteUri = ContentUris.withAppendedId(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, id);
contentResolver.delete(deleteUri, null, null);
} else {
Toast.makeText(context, "No Song Found", Toast.LENGTH_SHORT).show();
}
c.close();
}
}, 0);
File delete = new File(songName);
if(delete.exists()){
if(delete.delete()) {
arrayList.remove(pos);
songPath.remove(pos);
songThumb.remove(pos);
artistName.remove(pos);
songArt.remove(pos);
notifyItemRemoved(pos);
notifyItemRangeChanged(pos, arrayList.size());
Intent intent = new Intent();
intent.setAction(SongFragment.deteleSong);
intent.putExtra("position",pos);
context.sendBroadcast(intent);
}
else
Toast.makeText(context, "Error while deleting File.", Toast.LENGTH_SHORT).show();
}
}
@Override
public int getItemCount() {
return allSongs.size();
}
}