/* * Copyright (c) 2020 Hemanth Savarla. * * Licensed under the GNU General Public License v3 * * This is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * */ package code.name.monkey.retromusic.adapter import android.app.Activity import android.view.LayoutInflater import android.view.View import android.view.ViewGroup import android.widget.TextView import androidx.recyclerview.widget.RecyclerView import code.name.monkey.retromusic.R import code.name.monkey.retromusic.extensions.hide import code.name.monkey.retromusic.model.Contributor import code.name.monkey.retromusic.util.RetroUtil import code.name.monkey.retromusic.views.RetroShapeableImageView class TranslatorsAdapter( private var contributors: List ) : RecyclerView.Adapter() { override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder { return ViewHolder( LayoutInflater.from(parent.context).inflate( R.layout.item_contributor, parent, false ) ) } override fun onBindViewHolder(holder: ViewHolder, position: Int) { val contributor = contributors[position] holder.bindData(contributor) holder.itemView.setOnClickListener { RetroUtil.openUrl(it?.context as Activity, contributors[position].link) } } override fun getItemCount(): Int { return contributors.size } inner class ViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) { val title: TextView = itemView.findViewById(R.id.title) val text: TextView = itemView.findViewById(R.id.text) val image: RetroShapeableImageView = itemView.findViewById(R.id.icon) internal fun bindData(contributor: Contributor) { title.text = contributor.name text.text = contributor.summary image.hide() } } }