From 8aee444f5f8b97e20dcdcdb44d64ac2187dc3d1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80=20?= =?UTF-8?q?=D0=97=D0=B0=D1=86=D0=B5=D0=BF=D0=B8=D0=BD?= Date: Thu, 9 Nov 2017 18:07:03 +0300 Subject: [PATCH] [android] Temporarily disabled showing the rating in ugc review layout while server is not ready --- android/src/com/mapswithme/maps/ugc/UGCReviewAdapter.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/src/com/mapswithme/maps/ugc/UGCReviewAdapter.java b/android/src/com/mapswithme/maps/ugc/UGCReviewAdapter.java index 733f5ed50d..f9a776e334 100644 --- a/android/src/com/mapswithme/maps/ugc/UGCReviewAdapter.java +++ b/android/src/com/mapswithme/maps/ugc/UGCReviewAdapter.java @@ -69,6 +69,8 @@ class UGCReviewAdapter extends Adapter mCommentDate = (TextView) itemView.findViewById(R.id.date); mReview = (TextView) itemView.findViewById(R.id.review); mRating = (RatingView) itemView.findViewById(R.id.rating); + // TODO: remove "gone" visibility when review rating behaviour is fixed on the server. + mRating.setVisibility(View.GONE); } public void bind(UGC.Review review)