HomeSort by relevance Sort by last modified time
    Searched full:hasfocus (Results 26 - 50 of 327) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/Gallery/src/com/android/camera/
MovieView.java 89 public void onWindowFocusChanged(boolean hasFocus) {
90 mFocused = hasFocus;
  /external/deqp/framework/platform/android/
tcuAndroidNativeActivity.cpp 59 static void onWindowFocusChangedCallback (ANativeActivity* activity, int hasFocus)
61 static_cast<tcu::Android::NativeActivity*>(activity->instance)->onWindowFocusChanged(hasFocus);
168 void NativeActivity::onWindowFocusChanged (int hasFocus)
170 DE_UNREF(hasFocus);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
GoneParentFocusedChildTest.java 43 getActivity().getButton().hasFocus());
RequestFocusTest.java 73 assertTrue("requestFocus() should work from onCreate.", mBottomRightButton.hasFocus());
89 assertTrue("Focus should move to bottom left", mBottomLeftButton.hasFocus());
130 assertTrue(clearingFocusButton.hasFocus());
173 assertTrue(clearingFocusButton.hasFocus());
ListWithFooterViewAndNewLabelsTest.java 59 assertTrue(mButton.hasFocus());
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
ActionAdapter.java 221 changeFocus(convertView, false /* hasFocus */, false /* shouldAnimate */);
256 changeFocus(mSelectedView, false /* hasFocus */, false /* shouldAnimate */);
267 boolean hasFocus = (mainPosition == 0.0);
268 if (hasFocus) {
270 changeFocus(view, true /* hasFocus */, true /* shouldAniamte */);
274 changeFocus(mSelectedView, false /* hasFocus */, true /* shouldAniamte */);
279 private void changeFocus(View v, boolean hasFocus, boolean shouldAnimate) {
286 ? (hasFocus ? mSelectedTitleAlpha : mUnselectedAlpha) : mDisabledTitleAlpha;
287 float descriptionAlpha = (!hasFocus || action.infoOnly()) ? mUnselectedDescriptionAlpha
307 if (mOnFocusListener != null && hasFocus) {
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_input_InputWindowHandle.cpp 49 jfieldID hasFocus;
145 mInfo->hasFocus = env->GetBooleanField(obj,
146 gInputWindowHandleClassInfo.hasFocus);
282 GET_FIELD_ID(gInputWindowHandleClassInfo.hasFocus, clazz,
283 "hasFocus", "Z");
  /frameworks/base/core/java/android/view/
WindowCallbackWrapper.java 105 public void onWindowFocusChanged(boolean hasFocus) {
106 mWrapped.onWindowFocusChanged(hasFocus);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListItemFocusablesCloseTest.java 107 getActivity().getChildOfItem(1, 0).hasFocus());
113 getActivity().getChildOfItem(0, 2).hasFocus());
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
PersistentFocusWrapper.java 67 if (hasFocus()) {
94 if (hasFocus() || getGrandChildCount() == 0 ||
ItemBridgeAdapter.java 69 public void onFocusChange(View view, boolean hasFocus) {
70 if (DEBUG) Log.v(TAG, "onFocusChange " + hasFocus + " " + view
76 mFocusHighlight.onItemFocused(view, hasFocus);
79 mChainedListener.onFocusChange(view, hasFocus);
SearchBar.java 190 public void onFocusChange(View view, boolean hasFocus) {
191 if (DEBUG) Log.v(TAG, "EditText.onFocusChange " + hasFocus);
192 if (hasFocus) {
195 updateUi(hasFocus);
292 public void onFocusChange(View view, boolean hasFocus) {
293 if (DEBUG) Log.v(TAG, "SpeechOrb.onFocusChange " + hasFocus);
294 if (hasFocus) {
303 updateUi(hasFocus);
307 updateUi(hasFocus());
540 if (!hasFocus()) {
    [all...]
  /frameworks/support/v4/jellybean-mr2/android/support/v4/media/
TransportMediatorJellybeanMR2.java 55 public void onWindowFocusChanged(boolean hasFocus) {
56 if (hasFocus) gainFocus();
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
WindowCallbackWrapper.java 114 public void onWindowFocusChanged(boolean hasFocus) {
115 mWrapped.onWindowFocusChanged(hasFocus);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
SettingsLayoutAdapter.java 368 public void onFocusChange(View v, boolean hasFocus) {
369 if (hasFocus) {
373 changeFocus(v, true /* hasFocus */, false /* shouldAnimate */);
375 changeFocus(v, true /* hasFocus */, true /* shouldAnimate */);
387 changeFocus(v, false /* hasFocus */, true /* shouldAnimate */);
391 private void changeFocus(View v, boolean hasFocus, boolean shouldAnimate) {
428 titleAlpha = hasFocus ? mSelectedTitleAlpha : mUnselectedAlpha;
433 if (!hasFocus || layoutRow.infoOnly()) {
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
KeyboardInterpreter.java 76 if (mTable.hasFocus()) {
86 if (mTable.hasFocus()) {
EdgeSwipeDetector.java 64 if (mTable.hasFocus()) {
  /frameworks/base/core/tests/coretests/src/android/view/
LongpressTest.java 65 assertTrue(mSimpleView.hasFocus());
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
BaselineAlignmentZeroWidthAndWeightTest.java 51 assertTrue(mShowButton.hasFocus());
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
AddColumnTest.java 54 assertTrue(mAddRow.hasFocus());
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisibleWithInternalScrollTest.java 64 assertTrue(mScrollToBlob.hasFocus());
RequestRectangleVisibleTest.java 99 assertTrue(mClickToScrollFromAbove.hasFocus());
140 assertTrue(mClickToScrollFromBelow.hasFocus());
182 while(!view.hasFocus()) {
  /packages/apps/Launcher3/src/com/android/launcher3/
FocusIndicatorView.java 70 public void onFocusChange(View v, boolean hasFocus) {
75 mPendingCall = Pair.create(v, hasFocus);
86 if (hasFocus) {
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewNode.java 56 boolean hasFocus;
84 hasFocus = getBoolean("hasFocus()", false);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CCombo3.java 92 private boolean hasFocus;
95 boolean old_hasFocus = hasFocus;
96 hasFocus =
102 if (hasFocus) {
110 if (old_hasFocus && !hasFocus) {

Completed in 813 milliseconds

12 3 4 5 6 7 8 91011>>