Update ProgressLayout.java

pull/123/head
FongMi 3 years ago
parent b8aac7821e
commit 1a435c96ea
  1. 2
      app/src/main/java/com/fongmi/android/tv/ui/custom/ProgressLayout.java

@ -114,7 +114,9 @@ public class ProgressLayout extends RelativeLayout {
}
private void showView(View view) {
view.setAlpha(0f);
view.setVisibility(VISIBLE);
view.animate().alpha(1f).setDuration(100);
}
private void hideView(View view) {

Loading…
Cancel
Save