Den

Results 2 comments of Den

Hello, @leandroBorgesFerreira! Still have a question about your Buttons in RV. I need to set button state (normal or finished) according to boolean field in my model. But what should...

Okay, I added one thing and now it works: ``` if (event.isFollowed()) { mBtnFollow.startAnimation(); mBtnFollow.doneLoadingAnimation(Utils.getResources().getColor(R.color.orange_juice), BitmapFactory.decodeResource(Utils.getResources(), R.drawable.ic_followed_button)); } else { mBtnFollow.revertAnimation(); } ``` But still I guess we should have...