Created
November 2, 2019 02:52
-
-
Save rogergcc/87da77c1203a34cb20d5e43b43479062 to your computer and use it in GitHub Desktop.
recycler adapter select favorites
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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