From 3163a14e13379764d91d1b6f1892f5fbde599481 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: Mon, 16 Oct 2017 19:27:24 +0300 Subject: [PATCH] [android] Added higing your review's text if text is empty --- android/src/com/mapswithme/maps/ugc/UGCController.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/android/src/com/mapswithme/maps/ugc/UGCController.java b/android/src/com/mapswithme/maps/ugc/UGCController.java index 74eb477983..cafa6a8378 100644 --- a/android/src/com/mapswithme/maps/ugc/UGCController.java +++ b/android/src/com/mapswithme/maps/ugc/UGCController.java @@ -6,6 +6,7 @@ import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; +import android.text.TextUtils; import android.view.MotionEvent; import android.view.View; import android.widget.Button; @@ -257,9 +258,10 @@ public class UGCController implements View.OnClickListener, UGC.UGCListener return; TextView name = (TextView) mUserReviewView.findViewById(R.id.name); TextView date = (TextView) mUserReviewView.findViewById(R.id.date); - TextView review = (TextView) mUserReviewView.findViewById(R.id.review); name.setText(R.string.placepage_reviews_your_comment); date.setText(UGCReviewAdapter.DATE_FORMATTER.format(new Date(update.getTimeMillis()))); + TextView review = (TextView) mUserReviewView.findViewById(R.id.review); + UiUtils.showIf(!TextUtils.isEmpty(update.getText()), review); review.setText(update.getText()); mUGCUserRatingRecordsAdapter.setItems(update.getRatings()); }