From 2709d00b70641efdc73f18c0bdbdbc88daaac7cf Mon Sep 17 00:00:00 2001 From: Peter Serwylo Date: Thu, 1 Dec 2016 08:50:51 +1100 Subject: [PATCH] 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. --- .../org/fdroid/fdroid/views/AppDetailsRecyclerViewAdapter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/org/fdroid/fdroid/views/AppDetailsRecyclerViewAdapter.java b/app/src/main/java/org/fdroid/fdroid/views/AppDetailsRecyclerViewAdapter.java index 2ca0a7f90..c1e654795 100644 --- a/app/src/main/java/org/fdroid/fdroid/views/AppDetailsRecyclerViewAdapter.java +++ b/app/src/main/java/org/fdroid/fdroid/views/AppDetailsRecyclerViewAdapter.java @@ -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); } }