Skip to content

Commit

Permalink
Bug Fix:
Browse files Browse the repository at this point in the history
Circle View not disappearing when button is in unselected state
  • Loading branch information
varunest committed Aug 4, 2016
1 parent 070ffeb commit 3223279
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion app/src/main/res/layout/demo_star.xml
Original file line number Diff line number Diff line change
Expand Up @@ -127,5 +127,4 @@
</LinearLayout>

</LinearLayout>

</ScrollView>
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,10 @@ public void onClick(View v) {
animatorSet.cancel();
}
if (isChecked) {
circleView.setVisibility(View.VISIBLE);
playAnimation();
} else {
circleView.setVisibility(View.GONE);
}
} else {
playAnimation();
Expand Down

0 comments on commit 3223279

Please sign in to comment.