diff options
author | Andrew Lee <anwlee@google.com> | 2014-05-29 17:21:13 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-05-29 17:21:13 +0000 |
commit | d3521d5e9f6fe3f3cab252ee21258dec7bf73221 (patch) | |
tree | 23d993dfd29f18038e9daa709591ed6f1601d0f4 | |
parent | 2bbdd6a3d0ad2a67bf77b465d0a46c5d319d25b6 (diff) | |
parent | 7920be0e17014c5f13ce29042876714f745b0bb3 (diff) |
Merge "Set call log item view alpha to 1 after expand animation end." into lmp-preview-dev
-rw-r--r-- | src/com/android/dialer/calllog/CallLogFragment.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/com/android/dialer/calllog/CallLogFragment.java b/src/com/android/dialer/calllog/CallLogFragment.java index de0055085..ad86e240d 100644 --- a/src/com/android/dialer/calllog/CallLogFragment.java +++ b/src/com/android/dialer/calllog/CallLogFragment.java @@ -649,6 +649,11 @@ public class CallLogFragment extends ListFragment if (!isExpand) { viewHolder.actionsView.setVisibility(View.GONE); + } else { + // This seems like it should be unnecessary, but without this, after + // navigating out of the activity and then back, the action view alpha + // is defaulting to the value (0) at the start of the expand animation. + viewHolder.actionsView.setAlpha(1); } } |