Searched refs:mBaseTranslation (Results 1 – 1 of 1) sorted by relevance
129 private final float mBaseTranslation; field in NavigationBarEdgePanel253 mBaseTranslation = dp(BASE_TRANSLATION_DP); in NavigationBarEdgePanel()355 translation = mBaseTranslation; in adjustRectToBoundingBox()627 if (touchTranslation > mBaseTranslation) { in handleMoveEvent()628 float diff = touchTranslation - mBaseTranslation; in handleMoveEvent()629 float progress = MathUtils.saturate(diff / (mScreenSize - mBaseTranslation)); in handleMoveEvent()631 * (mMaxTranslation - mBaseTranslation); in handleMoveEvent()632 touchTranslation = mBaseTranslation + progress; in handleMoveEvent()634 float diff = mBaseTranslation - touchTranslation; in handleMoveEvent()635 float progress = MathUtils.saturate(diff / mBaseTranslation); in handleMoveEvent()[all …]