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:
parent
5f09c80914
commit
2709d00b70
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user