tempus/app/src/main/java/com/cappielloantonio/play/adapter/ArtistSimilarAdapter.java

100 lines
3.2 KiB
Java
Raw Normal View History

2021-05-01 18:52:26 +02:00
package com.cappielloantonio.play.adapter;
import android.content.Context;
import android.os.Bundle;
2021-08-01 11:26:06 +02:00
import android.text.Html;
2021-05-01 18:52:26 +02:00
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.navigation.Navigation;
import androidx.recyclerview.widget.RecyclerView;
import com.bumptech.glide.load.resource.bitmap.RoundedCorners;
2021-05-01 18:52:26 +02:00
import com.cappielloantonio.play.R;
import com.cappielloantonio.play.glide.CustomGlideRequest;
import com.cappielloantonio.play.model.Artist;
import com.cappielloantonio.play.util.MusicUtil;
2021-05-01 18:52:26 +02:00
import java.util.ArrayList;
import java.util.List;
public class ArtistSimilarAdapter extends RecyclerView.Adapter<ArtistSimilarAdapter.ViewHolder> {
private static final String TAG = "AlbumArtistPageAdapter";
private List<Artist> artists;
private LayoutInflater inflater;
private Context context;
public ArtistSimilarAdapter(Context context) {
this.context = context;
this.inflater = LayoutInflater.from(context);
this.artists = new ArrayList<>();
}
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = inflater.inflate(R.layout.item_library_similar_artist, parent, false);
return new ViewHolder(view);
}
@Override
public void onBindViewHolder(ViewHolder holder, int position) {
Artist artist = artists.get(position);
2021-08-07 15:09:20 +02:00
holder.textArtistName.setText(MusicUtil.getReadableString(artist.getName()));
2021-05-01 18:52:26 +02:00
CustomGlideRequest.Builder
2021-08-05 14:04:34 +02:00
.from(context, artist.getId(), CustomGlideRequest.ALBUM_PIC)
2021-05-01 18:52:26 +02:00
.build()
.transform(new RoundedCorners(CustomGlideRequest.CORNER_RADIUS))
2021-05-01 18:52:26 +02:00
.into(holder.cover);
}
@Override
public int getItemCount() {
return artists.size();
}
public Artist getItem(int position) {
return artists.get(position);
}
public void setItems(List<Artist> artists) {
this.artists = artists;
notifyDataSetChanged();
}
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener, View.OnLongClickListener {
TextView textArtistName;
ImageView cover;
ViewHolder(View itemView) {
super(itemView);
textArtistName = itemView.findViewById(R.id.artist_name_label);
cover = itemView.findViewById(R.id.similar_artist_cover_image_view);
itemView.setOnClickListener(this);
itemView.setOnLongClickListener(this);
}
@Override
public void onClick(View view) {
Bundle bundle = new Bundle();
bundle.putParcelable("artist_object", artists.get(getBindingAdapterPosition()));
Navigation.findNavController(view).navigate(R.id.artistPageFragment, bundle);
}
@Override
public boolean onLongClick(View view) {
Bundle bundle = new Bundle();
bundle.putParcelable("artist_object", artists.get(getBindingAdapterPosition()));
Navigation.findNavController(view).navigate(R.id.artistBottomSheetDialog, bundle);
return true;
}
}
}