51.7 Modifying the WebsiteListFragment Class
A minor change also needs to be made to the WebsiteListFragment.java file to make sure that the web site names appear in the primary list. Edit this file, locate the onBindViewHolder() method and modify the setText() method call to reference the web site name as follows:
public void onBindViewHolder(final ViewHolder holder, int position) {
holder.mItem = mValues.get(position);
holder.mIdView.setText(mValues.get(position).id);
holder.mContentView.setText(mValues.get(position).website_name);
.
.
}