Point to R.id.information, not R.id.text

Although the `textView` in `DonateViewHolder is currently not used, it was
pointing to an id which was not in the layout. This has been fixed in case
future devs choose to use this text view. Alternatively, we could remove it
completely if we don't think it is going to be used in this upcoming UI work.
This commit is contained in:
Peter Serwylo 2016-12-01 08:50:51 +11:00
parent 5f09c80914
commit 2709d00b70

View File

@ -652,7 +652,7 @@ public class AppDetailsRecyclerViewAdapter
DonateViewHolder(View view) {
super(view);
textView = (TextView) view.findViewById(R.id.text);
textView = (TextView) view.findViewById(R.id.information);
contentView = (LinearLayout) view.findViewById(R.id.ll_information);
}
}