Searched defs:hasFocus (Results 26 - 38 of 38) sorted by relevance

12

/frameworks/base/media/java/android/media/tv/
H A DTvView.java635 public void dispatchWindowFocusChanged(boolean hasFocus) { argument
636 super.dispatchWindowFocusChanged(hasFocus);
640 if (hasFocus && this == sMainTvView.get() && mSession != null) {
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DListenerBindingObject.java186 public void onFocusChange(View v, boolean hasFocus) { } argument
/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java1775 public boolean hasFocus() { method in class:ListPopupWindow.DropDownListView
1776 return mHijackFocus || super.hasFocus();
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintActivity.java2321 public void onFocusChange(View view, boolean hasFocus) { argument
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java1697 public boolean hasFocus() { method in class:ListPopupWindow.DropDownListView
1698 return mHijackFocus || super.hasFocus();
/frameworks/base/core/java/android/view/
H A DWindow.java378 * @param hasFocus Whether the window now has focus.
380 public void onWindowFocusChanged(boolean hasFocus); argument
1489 * @param hasFocus Whether this window has focus or not.
1492 public void setLocalFocus(boolean hasFocus, boolean inTouchMode) { } argument
H A DViewGroup.java1028 public boolean hasFocus() { method in class:ViewGroup
1130 if (hasFocus()) {
1199 public void dispatchWindowFocusChanged(boolean hasFocus) { argument
1200 super.dispatchWindowFocusChanged(hasFocus);
1204 children[i].dispatchWindowFocusChanged(hasFocus);
4340 if (child.hasFocus()) {
4896 if (child.hasFocus()) {
H A DViewRootImpl.java2011 if (DEBUG_INPUT_RESIZE) Log.v(TAG, "First: mView.hasFocus()="
2012 + mView.hasFocus());
2014 if (!mView.hasFocus()) {
2581 final boolean hasFocus = getAccessibilityFocusedRect(bounds);
2582 if (!hasFocus) {
3036 if (!mView.hasFocus()) {
3539 if (mView != null && mView.hasFocus()) {
3587 if (mView.hasFocus()) {
6226 public void windowFocusChanged(boolean hasFocus, boolean inTouchMode) { argument
6229 msg.arg1 = hasFocus
6720 windowFocusChanged(boolean hasFocus, boolean inTouchMode) argument
[all...]
H A DView.java5642 public boolean hasFocus() { method in class:View
8921 if (!hasFocus()) {
8929 if (hasFocus()) {
9524 * @param hasFocus True if the window containing this view now has focus,
9527 public void dispatchWindowFocusChanged(boolean hasFocus) { argument
9528 onWindowFocusChanged(hasFocus);
10588 if (hasFocus()) clearFocus();
10616 if (hasFocus()) clearFocus();
17104 + " fo=" + hasFocus()
21321 * @param hasFocus Th
21323 onFocusChange(View v, boolean hasFocus) argument
[all...]
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java498 public void onFocusChanged(boolean hasFocus, int direction, Rect previous) { argument
499 super.onFocusChanged(hasFocus, direction, previous);
500 if (!hasFocus) {
1133 if (hasFocus() || mTemporaryRecipients.size() < CHIP_LIMIT) {
1515 return !mNoChips && hasFocus() && enoughToFilter() && !alreadyHasChip(start, end);
/frameworks/base/core/java/android/app/
H A DActivity.java2648 * @param hasFocus Whether the window of this activity has focus.
2654 public void onWindowFocusChanged(boolean hasFocus) { argument
/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java769 if (!st.shownPanelView.hasFocus()) {
1695 public void setLocalFocus(boolean hasFocus, boolean inTouchMode) { argument
1696 getViewRootImpl().windowFocusChanged(hasFocus, inTouchMode);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java6703 * @see View#hasFocus()
6705 public boolean hasFocus() { method in class:RecyclerView.LayoutManager
6706 return mRecyclerView != null && mRecyclerView.hasFocus();

Completed in 1067 milliseconds

12