Lines Matching refs:mStackActionButton

99     private TextView mStackActionButton;
146 mStackActionButton = (TextView) inflater.inflate(R.layout.recents_stack_action_button,
148 mStackActionButton.setOnClickListener(new View.OnClickListener() {
154 addView(mStackActionButton);
300 mStackActionButton.bringToFront();
312 mStackActionButton.bringToFront();
351 measureChild(mStackActionButton,
385 mStackActionButton.layout(buttonBounds.left, buttonBounds.top, buttonBounds.right,
467 if (mStackActionButton != null) {
468 mStackActionButton.animate()
489 if (mStackActionButton != null) {
495 mStackActionButton.setLeftTopRightBottom(buttonBounds.left, buttonBounds.top,
556 if (mStackActionButton != null) {
557 mStackActionButton.animate()
659 if (mStackActionButton.getVisibility() == View.INVISIBLE) {
660 mStackActionButton.setVisibility(View.VISIBLE);
661 mStackActionButton.setAlpha(0f);
663 mStackActionButton.setTranslationY(-mStackActionButton.getMeasuredHeight() * 0.25f);
665 mStackActionButton.setTranslationY(0f);
671 mStackActionButton.animate()
674 mStackActionButton.animate()
707 if (mStackActionButton.getVisibility() == View.VISIBLE) {
709 mStackActionButton.animate()
710 .translationY(-mStackActionButton.getMeasuredHeight() * 0.25f);
712 mStackActionButton.animate()
719 mStackActionButton.setVisibility(View.INVISIBLE);
791 ? actionButtonRect.left - mStackActionButton.getPaddingLeft()
792 : actionButtonRect.right + mStackActionButton.getPaddingRight()
793 - mStackActionButton.getMeasuredWidth();
795 (actionButtonRect.height() - mStackActionButton.getMeasuredHeight()) / 2;
796 actionButtonRect.set(left, top, left + mStackActionButton.getMeasuredWidth(),
797 top + mStackActionButton.getMeasuredHeight());