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
60
) sorted by null
1
2
3
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowFragmentActivity.java
92
public View
getCurrentFocus
() {
93
View focusedView = super.
getCurrentFocus
();
ShadowActivity.java
339
public View
getCurrentFocus
() {
/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
());
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/
NotificationStudioActivity.java
226
View v =
getCurrentFocus
();
230
View currentFocus =
getCurrentFocus
();
243
imm.hideSoftInputFromWindow(getWindow().
getCurrentFocus
().getWindowToken(), 0);
/packages/services/Car/tests/libvehiclenetwork-native-test/
VehicleNetworkAudioHelperTest.cpp
100
const vehicle_prop_value_t&
getCurrentFocus
() {
144
mVN->injectEvent(mHalMock->
getCurrentFocus
());
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/view/
TestWindow.java
72
@Override public View
getCurrentFocus
() {
/external/robolectric/v1/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
();
/frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/util/
MockWindow.java
59
public View
getCurrentFocus
() {
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
FocusSearchNavigationTest.java
137
focused = mActivity.
getCurrentFocus
();
312
View currentFocus = ((Activity) context).getWindow().
getCurrentFocus
();
/cts/tests/app/src/android/app/cts/
DialogTest.java
235
assertNull(d.
getCurrentFocus
());
245
// When mWindow is not null
getCUrrentFocus
is the view in dialog
246
assertEquals(d.getWindow().
getCurrentFocus
(), d.
getCurrentFocus
());
649
assertNull(d.
getCurrentFocus
());
657
assertNull(d.
getCurrentFocus
());
[
all
...]
InstrumentationTest.java
503
public View
getCurrentFocus
() {
/cts/tests/tests/view/src/android/view/cts/
WindowTest.java
247
*
getCurrentFocus
: Return the view in this Window that currently has focus, or null if
258
assertNull(mWindow.
getCurrentFocus
());
263
View focus = mWindow.
getCurrentFocus
();
508
assertNull(mWindow.
getCurrentFocus
());
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/activities/
ContactEditorBaseActivity.java
239
final View currentFocus =
getCurrentFocus
();
/frameworks/base/core/java/android/app/
Dialog.java
475
* Call {@link android.view.Window#
getCurrentFocus
} on the
481
* @see android.view.Window#
getCurrentFocus
483
public @Nullable View
getCurrentFocus
() {
484
return mWindow != null ? mWindow.
getCurrentFocus
() : null;
[
all
...]
Activity.java
[
all
...]
/packages/apps/Settings/src/com/android/settings/
DateTimeSettingsSetupWizard.java
224
final View focusedView =
getCurrentFocus
();
/packages/services/Car/car-support-lib/src/android/support/car/app/
CarProxyActivity.java
349
View view = mActivity.get().
getCurrentFocus
();
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
MailActivity.java
354
sb.append(
getCurrentFocus
());
/frameworks/base/core/java/android/view/
Window.java
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
StatusBarWindowView.java
488
public View
getCurrentFocus
() {
/packages/apps/Calendar/src/com/android/calendar/event/
EditEventFragment.java
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
ComposeActivity.java
[
all
...]
/frameworks/base/core/java/com/android/internal/policy/
PhoneWindow.java
487
public View
getCurrentFocus
() {
[
all
...]
Completed in 2463 milliseconds
1
2
3