HomeSort by relevance Sort by last modified time
    Searched refs:mInputManager (Results 1 - 7 of 7) sorted by null

  /cts/tests/tests/view/src/android/view/cts/
InputDeviceEnabledTest.java 40 private InputManager mInputManager;
46 mInputManager = mInstrumentation.getTargetContext().getSystemService(InputManager.class);
47 assertNotNull(mInputManager);
52 final int[] inputDeviceIds = mInputManager.getInputDeviceIds();
55 final InputDevice inputDevice = mInputManager.getInputDevice(inputDeviceId);
66 final int[] inputDeviceIds = mInputManager.getInputDeviceIds();
68 final InputDevice inputDevice = mInputManager.getInputDevice(inputDeviceId);
  /development/samples/ControllerSample/src/com/example/inputmanagercompat/
InputManagerV16.java 33 private final InputManager mInputManager;
37 mInputManager = (InputManager) context.getSystemService(Context.INPUT_SERVICE);
43 return mInputManager.getInputDevice(id);
48 return mInputManager.getInputDeviceIds();
78 mInputManager.registerInputDeviceListener(v16Listener, handler);
87 mInputManager.unregisterInputDeviceListener(curListener);
InputManagerV9.java 47 private final WeakReference<InputManagerV9> mInputManager;
50 mInputManager = new WeakReference<InputManagerV9>(im);
58 InputManagerV9 imv = mInputManager.get();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/
MicrophoneDeviceTestActivity.java 43 private InputManager mInputManager;
106 mInputManager = (InputManager) context.getSystemService(Context.INPUT_SERVICE);
108 final int[] inputDeviceIds = mInputManager.getInputDeviceIds();
112 final InputDevice inputDevice = mInputManager.getInputDevice(inputDeviceId);
  /developers/build/prebuilts/androidtv/visual-game-controller/src/com/example/android/visualgamecontroller/
FullscreenActivity.java 129 private InputManager mInputManager;
205 mInputManager = (InputManager) getSystemService(Context.INPUT_SERVICE);
214 int[] deviceIds = mInputManager.getInputDeviceIds();
250 mInputManager.registerInputDeviceListener(this, null);
256 mInputManager.unregisterInputDeviceListener(this);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameControllerInput.java 60 private InputManager mInputManager;
70 mInputManager = (InputManager)getSystemService(Context.INPUT_SERVICE);
95 mInputManager.registerInputDeviceListener(this, null);
99 int[] ids = mInputManager.getInputDeviceIds();
110 mInputManager.unregisterInputDeviceListener(this);
159 final InputDevice device = mInputManager.getInputDevice(deviceId);
  /development/samples/ControllerSample/src/com/example/controllersample/
GameView.java 70 private final InputManagerCompat mInputManager;
107 mInputManager = InputManagerCompat.Factory.getInputManager(this.getContext());
108 mInputManager.registerInputDeviceListener(this, null);
114 int[] deviceIds = mInputManager.getInputDeviceIds();
116 InputDevice dev = mInputManager.getInputDevice(deviceId);
157 mInputManager.onGenericMotionEvent(event);
185 mInputManager.onResume();
196 mInputManager.onPause();
    [all...]

Completed in 738 milliseconds