summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/main/impl/toolbar/MainToolbar.java
blob: fc4bd03128d89b639cc4cf85ee145a4f5d77c128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/*
 * Copyright (C) 2018 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License
 */

package com.android.dialer.main.impl.toolbar;

import android.animation.ValueAnimator;
import android.animation.ValueAnimator.AnimatorUpdateListener;
import android.content.Context;
import android.support.annotation.StringRes;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.util.AttributeSet;
import android.view.MenuItem;
import android.view.animation.AccelerateDecelerateInterpolator;
import android.widget.ImageButton;
import android.widget.PopupMenu;
import android.widget.RelativeLayout;
import com.android.dialer.common.Assert;
import com.android.dialer.util.ViewUtil;
import com.google.common.base.Optional;

/** Toolbar for {@link com.android.dialer.main.impl.MainActivity}. */
public final class MainToolbar extends Toolbar implements PopupMenu.OnMenuItemClickListener {

  private static final int SLIDE_DURATION = 300;
  private static final AccelerateDecelerateInterpolator SLIDE_INTERPOLATOR =
      new AccelerateDecelerateInterpolator();

  private SearchBarView searchBar;
  private SearchBarListener listener;
  private MainToolbarMenu overflowMenu;
  private boolean isSlideUp;

  public MainToolbar(Context context, AttributeSet attrs) {
    super(context, attrs);
  }

  @Override
  protected void onFinishInflate() {
    super.onFinishInflate();
    ImageButton optionsMenuButton = findViewById(R.id.main_options_menu_button);
    overflowMenu = new MainToolbarMenu(getContext(), optionsMenuButton);
    overflowMenu.inflate(R.menu.main_menu);
    overflowMenu.setOnMenuItemClickListener(this);
    optionsMenuButton.setOnClickListener(v -> overflowMenu.show());
    optionsMenuButton.setOnTouchListener(overflowMenu.getDragToOpenListener());

    searchBar = findViewById(R.id.search_view_container);
  }

  @Override
  public boolean onMenuItemClick(MenuItem menuItem) {
    return listener.onMenuItemClicked(menuItem);
  }

  public void setSearchBarListener(SearchBarListener listener) {
    this.listener = listener;
    ((SearchBarView) findViewById(R.id.search_view_container)).setSearchBarListener(listener);
  }

  /** Slides the toolbar up and off the screen. */
  public void slideUp(boolean animate) {
    Assert.checkArgument(!isSlideUp);
    if (getHeight() == 0) {
      ViewUtil.doOnGlobalLayout(this, view -> slideUp(animate));
      return;
    }
    isSlideUp = true;
    ValueAnimator animator = ValueAnimator.ofFloat(0, -getHeight());
    animator.setDuration(animate ? SLIDE_DURATION : 0);
    animator.setInterpolator(SLIDE_INTERPOLATOR);
    animator.addUpdateListener(
        new AnimatorUpdateListener() {
          @Override
          public void onAnimationUpdate(ValueAnimator animation) {
            int val = ((Float) animation.getAnimatedValue()).intValue();
            RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) getLayoutParams();
            params.topMargin = val;
            requestLayout();
          }
        });
    animator.start();
  }

  /** Slides the toolbar down and back onto the screen. */
  public void slideDown(boolean animate) {
    Assert.checkArgument(isSlideUp);
    isSlideUp = false;
    ValueAnimator animator = ValueAnimator.ofFloat(-getHeight(), 0);
    animator.setDuration(animate ? SLIDE_DURATION : 0);
    animator.setInterpolator(SLIDE_INTERPOLATOR);
    animator.addUpdateListener(
        new AnimatorUpdateListener() {
          @Override
          public void onAnimationUpdate(ValueAnimator animation) {
            int val = ((Float) animation.getAnimatedValue()).intValue();
            RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) getLayoutParams();
            params.topMargin = val;
            requestLayout();
          }
        });
    animator.start();
  }

  /** @see SearchBarView#collapse(boolean) */
  public void collapse(boolean animate) {
    searchBar.collapse(animate);
  }

  /** @see SearchBarView#collapse(boolean) */
  public void expand(boolean animate, Optional<String> text) {
    searchBar.expand(animate, text);
  }

  public boolean isSlideUp() {
    return isSlideUp;
  }

  public boolean isExpanded() {
    return searchBar.isExpanded();
  }

  public String getQuery() {
    return searchBar.getQuery();
  }

  public void transferQueryFromDialpad(String query) {
    searchBar.setQueryWithoutUpdate(query);
  }

  public void hideKeyboard() {
    searchBar.hideKeyboard();
  }

  public void showKeyboard() {
    searchBar.showKeyboard();
  }

  public MainToolbarMenu getOverflowMenu() {
    return overflowMenu;
  }

  public void setHint(@StringRes int hint) {
    searchBar.setHint(hint);
  }

  public void showClearFrequents(boolean show) {
    overflowMenu.showClearFrequents(show);
  }

  public void maybeShowSimulator(AppCompatActivity appCompatActivity) {
    overflowMenu.maybeShowSimulator(appCompatActivity);
  }
}