Home
last modified time | relevance | path

Searched refs:buttonDispatcher (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNavigationBarInflaterView.java220 private void initiallyFill(ButtonDispatcher buttonDispatcher) { in initiallyFill() argument
221 addAll(buttonDispatcher, mHorizontal.findViewById(R.id.ends_group)); in initiallyFill()
222 addAll(buttonDispatcher, mHorizontal.findViewById(R.id.center_group)); in initiallyFill()
223 addAll(buttonDispatcher, mVertical.findViewById(R.id.ends_group)); in initiallyFill()
224 addAll(buttonDispatcher, mVertical.findViewById(R.id.center_group)); in initiallyFill()
227 private void addAll(ButtonDispatcher buttonDispatcher, ViewGroup parent) { in addAll() argument
232 if (parent.getChildAt(i).getId() == buttonDispatcher.getId()) { in addAll()
233 buttonDispatcher.addView(parent.getChildAt(i)); in addAll()
236 addAll(buttonDispatcher, (ViewGroup) parent.getChildAt(i)); in addAll()
DNavigationBarFragment.java207 ButtonDispatcher buttonDispatcher = null;
209 buttonDispatcher = mNavigationBarView.getBackButton();
211 buttonDispatcher = mNavigationBarView.getHomeHandle();
213 if (buttonDispatcher != null) {
214 buttonDispatcher.setVisibility(alpha > 0 ? View.VISIBLE : View.INVISIBLE);
215 buttonDispatcher.setAlpha(alpha, animate);