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

/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DSearchOrbView.java232 private void startShadowFocusAnimation(boolean gainFocus, int duration) { argument
237 if (gainFocus) {
246 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
247 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
248 animateOnFocus(gainFocus);
H A DSeekBar.java117 protected void onFocusChanged(boolean gainFocus, argument
119 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
H A DBaseGridView.java878 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
879 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
880 mLayoutManager.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
H A DGridLayoutManager.java3155 void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
3156 if (gainFocus) {
/frameworks/support/customview/src/main/java/androidx/customview/widget/
H A DExploreByTouchHelper.java79 * public boolean onFocusChanged(boolean gainFocus, int direction,
81 * super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
82 * mHelper.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
264 * public boolean onFocusChanged(boolean gainFocus, int direction,
266 * super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
267 * mHelper.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
271 public final void onFocusChanged(boolean gainFocus, int direction, argument
277 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.java1942 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
1943 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
1946 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.java1975 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
1976 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
1977 if (gainFocus && mSelectedPosition < 0 && !isInTouchMode()) {
/frameworks/base/core/java/android/view/
H A DView.java7225 * @param gainFocus True if the View has focus; false otherwise.
7237 protected void onFocusChanged(boolean gainFocus, @FocusDirection int direction, argument
7239 if (gainFocus) {
7250 if (!gainFocus) {
7265 li.mOnFocusChangeListener.onFocusChange(this, gainFocus);
7272 notifyEnterOrExitForAutoFillIfNeeded(gainFocus);
[all...]

Completed in 221 milliseconds