[android] Temporarily disabled showing the rating in ugc review layout while server is not ready

This commit is contained in:
Александр Зацепин 2017-11-09 18:07:03 +03:00 committed by Aleksandr Zatsepin
parent f665d57ecd
commit 8aee444f5f

View file

@ -69,6 +69,8 @@ class UGCReviewAdapter extends Adapter<UGCReviewAdapter.ViewHolder>
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)