summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2014-05-29 17:21:13 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-05-29 17:21:13 +0000
commitd3521d5e9f6fe3f3cab252ee21258dec7bf73221 (patch)
tree23d993dfd29f18038e9daa709591ed6f1601d0f4 /src
parent2bbdd6a3d0ad2a67bf77b465d0a46c5d319d25b6 (diff)
parent7920be0e17014c5f13ce29042876714f745b0bb3 (diff)
Merge "Set call log item view alpha to 1 after expand animation end." into lmp-preview-dev
Diffstat (limited to 'src')
-rw-r--r--src/com/android/dialer/calllog/CallLogFragment.java5
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);
}
}