Limit translation of bottom panel snapping to not overshoot.
am: b1440bdb17
Change-Id: I5e34ac21774e9c781f3f3aef0b0a37fe81e1f747
This commit is contained in:
@@ -306,8 +306,9 @@ public class WatchListDecorLayout extends FrameLayout
|
||||
if (mListView.getChildCount() > 0) {
|
||||
if (mListView.getLastVisiblePosition() >= mListView.getCount() - 1) {
|
||||
View lastChild = mListView.getChildAt(mListView.getChildCount() - 1);
|
||||
setScrolling(mBottomPanel,
|
||||
lastChild.getY() + lastChild.getHeight() - mBottomPanel.getTop());
|
||||
setScrolling(mBottomPanel, Math.max(
|
||||
0,
|
||||
lastChild.getY() + lastChild.getHeight() - mBottomPanel.getTop()));
|
||||
} else {
|
||||
// shift to hide the frame, last child is not the last position
|
||||
setScrolling(mBottomPanel, mBottomPanel.getHeight());
|
||||
|
||||
Reference in New Issue
Block a user