mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 01:53:31 +00:00
108 lines
3.4 KiB
Java
108 lines
3.4 KiB
Java
package com.cappielloantonio.play.adapter;
|
|
|
|
import android.content.Context;
|
|
import android.os.Bundle;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import android.widget.ImageView;
|
|
import android.widget.TextView;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.recyclerview.widget.RecyclerView;
|
|
|
|
import com.bumptech.glide.load.resource.bitmap.CenterCrop;
|
|
import com.bumptech.glide.load.resource.bitmap.RoundedCorners;
|
|
import com.cappielloantonio.play.R;
|
|
import com.cappielloantonio.play.glide.CustomGlideRequest;
|
|
import com.cappielloantonio.play.interfaces.ClickCallback;
|
|
import com.cappielloantonio.play.subsonic.models.AlbumID3;
|
|
import com.cappielloantonio.play.util.MusicUtil;
|
|
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
public class AlbumAdapter extends RecyclerView.Adapter<AlbumAdapter.ViewHolder> {
|
|
private final Context context;
|
|
private final ClickCallback click;
|
|
|
|
private List<AlbumID3> albums;
|
|
|
|
public AlbumAdapter(Context context, ClickCallback click) {
|
|
this.context = context;
|
|
this.click = click;
|
|
this.albums = Collections.emptyList();
|
|
}
|
|
|
|
@NonNull
|
|
@Override
|
|
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
|
View view = LayoutInflater.from(context).inflate(R.layout.item_library_album, parent, false);
|
|
return new ViewHolder(view);
|
|
}
|
|
|
|
@Override
|
|
public void onBindViewHolder(ViewHolder holder, int position) {
|
|
AlbumID3 album = albums.get(position);
|
|
|
|
holder.textAlbumName.setText(MusicUtil.getReadableString(album.getName()));
|
|
holder.textArtistName.setText(MusicUtil.getReadableString(album.getArtist()));
|
|
|
|
CustomGlideRequest.Builder
|
|
.from(context, album.getCoverArtId(), CustomGlideRequest.ALBUM_PIC, null)
|
|
.build()
|
|
.transform(new CenterCrop(), new RoundedCorners(CustomGlideRequest.CORNER_RADIUS))
|
|
.into(holder.cover);
|
|
}
|
|
|
|
@Override
|
|
public int getItemCount() {
|
|
return albums.size();
|
|
}
|
|
|
|
public AlbumID3 getItem(int position) {
|
|
return albums.get(position);
|
|
}
|
|
|
|
public void setItems(List<AlbumID3> albums) {
|
|
this.albums = albums;
|
|
notifyDataSetChanged();
|
|
}
|
|
|
|
public class ViewHolder extends RecyclerView.ViewHolder {
|
|
TextView textAlbumName;
|
|
TextView textArtistName;
|
|
ImageView cover;
|
|
|
|
ViewHolder(View itemView) {
|
|
super(itemView);
|
|
|
|
textAlbumName = itemView.findViewById(R.id.album_name_label);
|
|
textArtistName = itemView.findViewById(R.id.artist_name_label);
|
|
cover = itemView.findViewById(R.id.album_cover_image_view);
|
|
|
|
textAlbumName.setSelected(true);
|
|
textArtistName.setSelected(true);
|
|
|
|
itemView.setOnClickListener(v -> onClick());
|
|
itemView.setOnLongClickListener(v -> onLongClick());
|
|
}
|
|
|
|
private void onClick() {
|
|
Bundle bundle = new Bundle();
|
|
bundle.putParcelable("album_object", albums.get(getBindingAdapterPosition()));
|
|
bundle.putBoolean("is_offline", false);
|
|
|
|
click.onAlbumClick(bundle);
|
|
}
|
|
|
|
private boolean onLongClick() {
|
|
Bundle bundle = new Bundle();
|
|
bundle.putParcelable("album_object", albums.get(getBindingAdapterPosition()));
|
|
|
|
click.onAlbumLongClick(bundle);
|
|
|
|
return false;
|
|
}
|
|
}
|
|
}
|