Searched defs:gainFocus (Results 1 - 11 of 11) sorted by relevance

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DSeekBar.java116 protected void onFocusChanged(boolean gainFocus, argument
118 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
H A DSearchOrbView.java231 private void startShadowFocusAnimation(boolean gainFocus, int duration) { argument
236 if (gainFocus) {
245 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
246 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
247 animateOnFocus(gainFocus);
H A DBaseGridView.java877 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
878 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
879 mLayoutManager.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
H A DGridLayoutManager.java3039 void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
3040 if (gainFocus) {
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DExploreByTouchHelper.java78 * public boolean onFocusChanged(boolean gainFocus, int direction,
80 * super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
81 * mHelper.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
263 * public boolean onFocusChanged(boolean gainFocus, int direction,
265 * super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
266 * mHelper.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
270 public final void onFocusChanged(boolean gainFocus, int direction, argument
276 if (gainFocus) {
/frameworks/base/core/java/android/widget/
H A DGallery.java1388 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
1389 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
1396 if (gainFocus && mSelectedChild != null) {
H A DGridView.java1937 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
1938 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
1941 if (gainFocus && previouslyFocusedRect != null) {
H A DSimpleMonthView.java476 protected void onFocusChanged(boolean gainFocus, @FocusDirection int direction, argument
478 if (gainFocus) {
511 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
H A DListView.java3751 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
3752 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
3757 if (adapter != null && gainFocus && previouslyFocusedRect != null) {
H A DAbsListView.java1974 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
1975 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
1976 if (gainFocus && mSelectedPosition < 0 && !isInTouchMode()) {
/frameworks/base/core/java/android/view/
H A DView.java6919 * @param gainFocus True if the View has focus; false otherwise.
6931 protected void onFocusChanged(boolean gainFocus, @FocusDirection int direction, argument
6933 if (gainFocus) {
6944 if (!gainFocus) {
6959 li.mOnFocusChangeListener.onFocusChange(this, gainFocus);
6966 notifyEnterOrExitForAutoFillIfNeeded(gainFocus);

Completed in 294 milliseconds