Searched defs:mActionBarTop (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java60 private ActionBarContainer mActionBarTop; field in class:ActionBarOverlayLayout
123 mCurrentActionBarTopAnimator = mActionBarTop.animate().translationY(0)
135 mCurrentActionBarTopAnimator = mActionBarTop.animate()
136 .translationY(-mActionBarTop.getHeight())
319 boolean changed = applyInsets(mActionBarTop, systemInsets, true, true, false, true);
373 measureChildWithMargins(mActionBarTop, widthMeasureSpec, 0, heightMeasureSpec, 0);
374 LayoutParams lp = (LayoutParams) mActionBarTop.getLayoutParams();
376 mActionBarTop.getMeasuredWidth() + lp.leftMargin + lp.rightMargin);
378 mActionBarTop.getMeasuredHeight() + lp.topMargin + lp.bottomMargin);
379 childState = combineMeasuredStates(childState, mActionBarTop
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarOverlayLayout.java62 private ActionBarContainer mActionBarTop; field in class:ActionBarOverlayLayout
110 mCurrentActionBarTopAnimator = ViewCompat.animate(mActionBarTop).translationY(0)
118 mCurrentActionBarTopAnimator = ViewCompat.animate(mActionBarTop)
119 .translationY(-mActionBarTop.getHeight())
289 boolean changed = applyInsets(mActionBarTop, systemInsets, true, true, false, true);
340 measureChildWithMargins(mActionBarTop, widthMeasureSpec, 0, heightMeasureSpec, 0);
341 LayoutParams lp = (LayoutParams) mActionBarTop.getLayoutParams();
343 mActionBarTop.getMeasuredWidth() + lp.leftMargin + lp.rightMargin);
345 mActionBarTop.getMeasuredHeight() + lp.topMargin + lp.bottomMargin);
347 ViewCompat.getMeasuredState(mActionBarTop));
[all...]

Completed in 154 milliseconds