Searched defs:hasFocus (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditText.java127 @Override public boolean hasFocus() { method in class:ExtractEditText
/frameworks/base/core/java/android/widget/
H A DZoomControls.java106 public boolean hasFocus() { method in class:ZoomControls
107 return mZoomIn.hasFocus() || mZoomOut.hasFocus();
H A DTabWidget.java316 public void onFocusChange(View v, boolean hasFocus) { argument
317 if (v == this && hasFocus) {
322 if (hasFocus) {
H A DTabHost.java179 if (!mCurrentView.hasFocus() || mCurrentView.isFocused()) {
280 && (mCurrentView.hasFocus())
291 public void dispatchWindowFocusChanged(boolean hasFocus) { argument
292 mCurrentView.dispatchWindowFocusChanged(hasFocus);
328 if (!mTabWidget.hasFocus()) {
H A DAutoCompleteTextView.java1023 if (hasFocus() && hasWindowFocus()) {
1549 public boolean hasFocus() { method in class:AutoCompleteTextView.DropDownListView
/frameworks/base/core/java/com/android/internal/widget/
H A DNumberPicker.java193 if (!mText.hasFocus()) mText.requestFocus();
255 public void onFocusChange(View v, boolean hasFocus) { argument
260 if (!hasFocus) {
/frameworks/base/core/java/android/view/
H A DSurfaceView.java511 public void windowFocusChanged(boolean hasFocus, boolean touchEnabled) { argument
512 Log.w("SurfaceView", "Unexpected focus in surface: focus=" + hasFocus + ", touchEnabled=" + touchEnabled);
H A DWindow.java257 * @param hasFocus Whether the window now has focus.
259 public void onWindowFocusChanged(boolean hasFocus); argument
H A DViewGroup.java554 public boolean hasFocus() { method in class:ViewGroup
654 public void dispatchWindowFocusChanged(boolean hasFocus) { argument
655 super.dispatchWindowFocusChanged(hasFocus);
659 children[i].dispatchWindowFocusChanged(hasFocus);
1883 if (child.hasFocus()) {
2255 if (child.hasFocus()) {
H A DViewRoot.java1057 if (DEBUG_INPUT_RESIZE) Log.v(TAG, "First: mView.hasFocus()="
1058 + mView.hasFocus());
1060 if (!mView.hasFocus()) {
1507 if (mView != null && !mView.hasFocus()) {
1521 if (mView != null && !mView.hasFocus()) {
1884 if (mView.hasFocus()) {
1936 if (mView.hasFocus()) {
2172 if (isKeyboardKey(event) && mView != null && mView.hasFocus()) {
2590 public void windowFocusChanged(boolean hasFocus, boolean inTouchMode) { argument
2593 msg.arg1 = hasFocus
2780 windowFocusChanged(boolean hasFocus, boolean inTouchMode) argument
[all...]
H A DView.java2542 public boolean hasFocus() { method in class:View
3690 * @param hasFocus True if the window containing this view now has focus,
3693 public void dispatchWindowFocusChanged(boolean hasFocus) { argument
3694 onWindowFocusChanged(hasFocus);
4281 if (((mViewFlags & VISIBILITY_MASK) == GONE) && hasFocus()) {
4294 if (((mViewFlags & VISIBILITY_MASK) == INVISIBLE) && hasFocus()) {
6856 + " fo=" + hasFocus()
8383 * @param hasFocus The new focus state of v.
8385 void onFocusChange(View v, boolean hasFocus); argument
/frameworks/base/core/java/android/app/
H A DDialog.java576 public void onWindowFocusChanged(boolean hasFocus) { argument
H A DActivity.java1929 * @param hasFocus Whether the window of this activity has focus.
1934 public void onWindowFocusChanged(boolean hasFocus) { argument
/frameworks/base/awt/java/awt/
H A DComponent.java281 * set.add(AccessibleState.FOCUSABLE); } if (hasFocus()) {
2832 public boolean hasFocus() { method in class:Component
/frameworks/base/core/java/android/webkit/
H A DWebView.java147 public boolean hasFocus() { method in class:WebView.ExtendedZoomControls
148 return mZoomControls.hasFocus() || mZoomMagnify.hasFocus();
1424 && mTextEntry.hasFocus();
2326 nativeRecordButtons(hasFocus() && hasWindowFocus(),
2926 if (!hasFocus() && !mTextEntry.hasFocus()
3134 nativeRecordButtons(hasFocus() && hasWindowFocus(), true, true);
3379 if (hasFocus()) {
3901 nativeRecordButtons(hasFocus()
[all...]

Completed in 238 milliseconds