mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 17:43:32 +00:00
77 lines
2.2 KiB
Java
77 lines
2.2 KiB
Java
|
|
package com.cappielloantonio.play.adapter;
|
||
|
|
|
||
|
|
import android.content.Context;
|
||
|
|
import android.util.Log;
|
||
|
|
import android.view.LayoutInflater;
|
||
|
|
import android.view.View;
|
||
|
|
import android.view.ViewGroup;
|
||
|
|
import android.widget.TextView;
|
||
|
|
|
||
|
|
import androidx.recyclerview.widget.RecyclerView;
|
||
|
|
|
||
|
|
import com.cappielloantonio.play.R;
|
||
|
|
import com.cappielloantonio.play.model.Song;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
public class RecentMusicAdapter extends RecyclerView.Adapter<RecentMusicAdapter.ViewHolder> {
|
||
|
|
private static final String TAG = "RecentMusicAdapter";
|
||
|
|
private List<Song> songs;
|
||
|
|
private LayoutInflater mInflater;
|
||
|
|
private Context context;
|
||
|
|
private ItemClickListener itemClickListener;
|
||
|
|
|
||
|
|
public RecentMusicAdapter(Context context, List<Song> songs) {
|
||
|
|
this.context = context;
|
||
|
|
this.mInflater = LayoutInflater.from(context);
|
||
|
|
this.songs = songs;
|
||
|
|
}
|
||
|
|
|
||
|
|
// inflates the row layout from xml when needed
|
||
|
|
@Override
|
||
|
|
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
|
||
|
|
View view = mInflater.inflate(R.layout.item_recent_track, parent, false);
|
||
|
|
return new ViewHolder(view);
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public void onBindViewHolder(ViewHolder holder, int position) {
|
||
|
|
Song song = songs.get(position);
|
||
|
|
|
||
|
|
holder.textTitle.setText(song.getTitle());
|
||
|
|
holder.textArtist.setText(song.getAlbumName());
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public int getItemCount() {
|
||
|
|
return songs.size();
|
||
|
|
}
|
||
|
|
|
||
|
|
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
|
||
|
|
TextView textTitle;
|
||
|
|
TextView textArtist;
|
||
|
|
|
||
|
|
ViewHolder(View itemView) {
|
||
|
|
super(itemView);
|
||
|
|
|
||
|
|
textTitle = itemView.findViewById(R.id.title_track_label);
|
||
|
|
textArtist = itemView.findViewById(R.id.artist_track_label);
|
||
|
|
|
||
|
|
itemView.setOnClickListener(this);
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public void onClick(View view) {
|
||
|
|
if (itemClickListener != null) itemClickListener.onItemClick(view, getAdapterPosition());
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setClickListener(ItemClickListener itemClickListener) {
|
||
|
|
this.itemClickListener = itemClickListener;
|
||
|
|
}
|
||
|
|
|
||
|
|
public interface ItemClickListener {
|
||
|
|
void onItemClick(View view, int position);
|
||
|
|
}
|
||
|
|
}
|