/* * Copyright (C) 2017 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package paging.android.example.com.pagingsample import android.graphics.Typeface import android.view.LayoutInflater import android.view.ViewGroup import android.widget.TextView import androidx.recyclerview.widget.RecyclerView /** * A simple ViewHolder that can bind a Cheese or Separator item. It also accepts null items since * the data may not have been fetched before it is bound. */ class CheeseViewHolder(parent: ViewGroup) : RecyclerView.ViewHolder( LayoutInflater.from(parent.context).inflate(R.layout.cheese_item, parent, false) ) { var cheese: Cheese? = null private set private val nameView = itemView.findViewById(R.id.name) /** * Items might be null if they are not paged in yet. PagedListAdapter will re-bind the * ViewHolder when Item is loaded. */ fun bindTo(item: CheeseListItem?) { if (item is CheeseListItem.Separator) { nameView.text = "${item.name} Cheeses" nameView.setTypeface(null, Typeface.BOLD) } else { nameView.text = item?.name nameView.setTypeface(null, Typeface.NORMAL) } cheese = (item as? CheeseListItem.Item)?.cheese nameView.text = item?.name } }