OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getCurrentFocus
(Results
1 - 25
of
35
) sorted by null
1
2
/frameworks/base/core/tests/coretests/src/android/widget/touchmode/
TouchModeFocusChangeTest.java
67
assertNull("activity shouldn't have focus", mActivity.
getCurrentFocus
());
TouchModeFocusableTest.java
87
assertNull("nothing should have focus", getActivity().
getCurrentFocus
());
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowFragmentActivity.java
92
public View
getCurrentFocus
() {
93
View focusedView = super.
getCurrentFocus
();
ShadowActivity.java
339
public View
getCurrentFocus
() {
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/
NotificationStudioActivity.java
226
View v =
getCurrentFocus
();
230
View currentFocus =
getCurrentFocus
();
243
imm.hideSoftInputFromWindow(getWindow().
getCurrentFocus
().getWindowToken(), 0);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
TestWindow.java
72
@Override public View
getCurrentFocus
() {
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ActivityTest.java
310
assertNull(shadow.
getCurrentFocus
());
313
assertEquals(view, shadow.
getCurrentFocus
());
343
View focusedView = shadowOf(activity).
getCurrentFocus
();
355
View focusedView = shadowOf(activity).
getCurrentFocus
();
FragmentActivityTest.java
164
View focusedView = activity.
getCurrentFocus
();
/packages/apps/Browser/src/com/android/browser/
HttpAuthenticationDialog.java
93
int focusId = mDialog.
getCurrentFocus
().getId();
/cts/tests/tests/app/src/android/app/cts/
DialogTest.java
224
assertNull(d.
getCurrentFocus
());
234
// When mWindow is not null
getCUrrentFocus
is the view in dialog
235
assertEquals(d.getWindow().
getCurrentFocus
(), d.
getCurrentFocus
());
626
assertNull(d.
getCurrentFocus
());
634
assertNull(d.
getCurrentFocus
());
[
all
...]
InstrumentationTest.java
493
public View
getCurrentFocus
() {
/cts/tests/tests/view/src/android/view/cts/
WindowTest.java
240
*
getCurrentFocus
: Return the view in this Window that currently has focus, or null if
251
assertNull(mWindow.
getCurrentFocus
());
256
View focus = mWindow.
getCurrentFocus
();
499
assertNull(mWindow.
getCurrentFocus
());
[
all
...]
/frameworks/base/core/java/android/app/
Dialog.java
447
* Call {@link android.view.Window#
getCurrentFocus
} on the
453
* @see android.view.Window#
getCurrentFocus
455
public View
getCurrentFocus
() {
456
return mWindow != null ? mWindow.
getCurrentFocus
() : null;
[
all
...]
Activity.java
[
all
...]
/packages/apps/Settings/src/com/android/settings/
DateTimeSettingsSetupWizard.java
230
final View focusedView =
getCurrentFocus
();
/frameworks/base/core/java/android/view/
Window.java
[
all
...]
/packages/apps/Settings/src/com/android/settings/wifi/
WifiSettingsForSetupWizardXL.java
244
final View focusedView =
getCurrentFocus
();
/packages/apps/Calendar/src/com/android/calendar/event/
EditEventFragment.java
[
all
...]
/packages/apps/Dialer/src/com/android/dialer/
DialtactsActivity.java
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
ComposeActivity.java
[
all
...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
PhoneWindow.java
329
public View
getCurrentFocus
() {
[
all
...]
/prebuilts/sdk/14/
android.jar
/prebuilts/sdk/18/
android.jar
/prebuilts/sdk/4/
android.jar
/prebuilts/sdk/5/
android.jar
Completed in 1845 milliseconds
1
2