summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2014-06-10 21:56:30 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-06-10 21:56:30 +0000
commitaafbb4c4ea8d6ac1f06e4f459a7bcdaa4ca284b6 (patch)
treeac14ac32a24d9bdb17106ae1e5cc0c284b829100 /src
parent438df9a6e183c50e55571850557429f9e13635c5 (diff)
parentbcb91d9c9539e03fdaec74bb38acecdd34552257 (diff)
Merge "Adjust recent cards animation." into lmp-preview-dev
Diffstat (limited to 'src')
-rw-r--r--src/com/android/dialer/list/ListsFragment.java4
-rw-r--r--src/com/android/dialer/list/ShortcutCardsAdapter.java9
2 files changed, 10 insertions, 3 deletions
diff --git a/src/com/android/dialer/list/ListsFragment.java b/src/com/android/dialer/list/ListsFragment.java
index bdd2d6c44..b50f94e62 100644
--- a/src/com/android/dialer/list/ListsFragment.java
+++ b/src/com/android/dialer/list/ListsFragment.java
@@ -135,12 +135,12 @@ public class ListsFragment extends Fragment implements CallLogQueryHandler.Liste
private PanelSlideListener mPanelSlideListener = new PanelSlideListener() {
@Override
public void onPanelSlide(View panel, float slideOffset) {
- // For every 1 percent that the panel is slid upwards, clip 3 percent from each edge
+ // For every 1 percent that the panel is slid upwards, clip 1.5 percent from each edge
// of the shortcut card, to achieve the animated effect of the shortcut card
// rapidly shrinking and disappearing from view when the panel is slid upwards.
// slideOffset is 1 when the shortcut card is fully exposed, and 0 when completely
// hidden.
- float ratioCardHidden = (1 - slideOffset) * 3f;
+ float ratioCardHidden = (1 - slideOffset) * 1.5f;
if (mShortcutCardsListView.getCount() > 0) {
SwipeableShortcutCard v =
(SwipeableShortcutCard) mShortcutCardsListView.getChildAt(0);
diff --git a/src/com/android/dialer/list/ShortcutCardsAdapter.java b/src/com/android/dialer/list/ShortcutCardsAdapter.java
index 088535ab7..dd198ec34 100644
--- a/src/com/android/dialer/list/ShortcutCardsAdapter.java
+++ b/src/com/android/dialer/list/ShortcutCardsAdapter.java
@@ -21,6 +21,7 @@ import android.content.res.Resources;
import android.database.Cursor;
import android.database.DataSetObserver;
import android.graphics.Rect;
+import android.view.Gravity;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewConfiguration;
@@ -252,6 +253,7 @@ public class ShortcutCardsAdapter extends BaseAdapter {
(CallLogListItemView) view.findViewById(R.id.call_log_list_item);
// Reset the internal call log item view if it is being recycled
callLogItem.setTranslationX(0);
+ callLogItem.setTranslationY(0);
callLogItem.setAlpha(1);
callLogItem.setClipBounds(null);
setChildrenOpacity(callLogItem, 1.0f);
@@ -344,12 +346,17 @@ public class ShortcutCardsAdapter extends BaseAdapter {
int newTop = (int) (ratioHidden * height);
int newBottom = (height - newTop);
mClipRect.set(newLeft, newTop, newRight, newBottom);
+
+ // Since the pane will be overlapping with the action bar, apply a vertical offset
+ // to visually center the clipped card in the viewable area;
+ int verticalOffset = -newTop / 2;
+ viewToClip.setTranslationY(verticalOffset);
}
viewToClip.setClipBounds(mClipRect);
// If the view has any children, fade them out of view.
final ViewGroup viewGroup = (ViewGroup) viewToClip;
- setChildrenOpacity(viewGroup, Math.max(0, 1 - 3 * ratioHidden));
+ setChildrenOpacity(viewGroup, Math.max(0, 1 - 4.5f * ratioHidden));
}
private void setChildrenOpacity(ViewGroup viewGroup, float alpha) {