Update comment like buttons style.

This commit is contained in:
Pierre 2018-04-07 17:24:57 +02:00
parent 639c5bbc08
commit 1096b98bd6
2 changed files with 38 additions and 9 deletions

View File

@ -96,6 +96,7 @@ class CommentsAdapter extends ArrayAdapter<Comment> {
//Update comment likes
LikeButtonView like = view.findViewById(R.id.like_button);
like.setSmallButton(true);
like.setNumberLikes(comment.getLikes());
like.setIsLiking(comment.isLiking());
like.setUpdateListener(new LikeButtonView.OnLikeUpdateListener() {

View File

@ -48,6 +48,11 @@ public class LikeButtonView extends FrameLayout implements View.OnClickListener
*/
private int numberLikes = 0;
/**
* Display mode : small
*/
private boolean mSmallButton = false;
/**
* Like Update listener
*/
@ -139,14 +144,25 @@ public class LikeButtonView extends FrameLayout implements View.OnClickListener
this.mUpdateListener = updateListener;
}
/**
* Set whether the like button should appear as a small button or not
*
* @param smallButton TRUE if the button is a small button / FALSE else
*/
public void setSmallButton(boolean smallButton) {
this.mSmallButton = smallButton;
refresh();
}
/**
* Refresh the like view
*/
private void refresh(){
if(!mSmallButton) {
//Update the image
mLikeImage.setImageDrawable(UiUtils.getDrawable(getContext(),
mIsLiking ? R.drawable.like_down : R.drawable.like_up));
mLikeImage.setImageDrawable(UiUtils.getDrawable(getContext(), R.drawable.like_up));
//Update the text
String text = UiUtils.getString(getContext(), mIsLiking ? R.string.like_view_liking :
@ -158,6 +174,18 @@ public class LikeButtonView extends FrameLayout implements View.OnClickListener
mLikeText.setText(text);
}
else {
//Update the text
mLikeText.setText(numberLikes > 0 ? ""+numberLikes : "");
//Update the image
mLikeImage.setImageDrawable(UiUtils.getDrawable(getContext(),
mIsLiking ? R.drawable.like_down : R.drawable.like_up));
}
}
@Override
public void onClick(View v) {