In the onBindViewHolder method onBindViewHolder add the following:
viewHolder.date.setText(moviesList.get(i).getTime()); Below added
public class ViewHolder extends RecyclerView.ViewHolder { private TextView date; public ViewHolder(View view) { super(view); date=(TextView) view.findViewById(R.id.date); But when starting it gives an error:
android.content.res.Resources $ NotFoundException: Unable to find resource ID # 0x58318fae
I do not quite understand what id he does not find, in xml? So he is there.