Skip to content

Instantly share code, notes, and snippets.

@rogergcc
Created November 2, 2019 02:52
Show Gist options
  • Save rogergcc/87da77c1203a34cb20d5e43b43479062 to your computer and use it in GitHub Desktop.
Save rogergcc/87da77c1203a34cb20d5e43b43479062 to your computer and use it in GitHub Desktop.
recycler adapter select favorites
holder.mname_character.setText(mValues.get(position).getName());
holder.mdetails_status.setText(mValues.get(position).getStatus());
holder.mdetails_species.setText(mValues.get(position).getSpecies());
holder.mdetails_gender.setText(mValues.get(position).getGender());
holder.mdetails_origin.setText(mValues.get(position).getOrigin().getName());
holder.mdetails_last_location.setText(mValues.get(position).getLocation().getName());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment