OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputManagerCompat
(Results
1 - 4
of
4
) sorted by null
/development/samples/ControllerSample/src/com/example/inputmanagercompat/
InputManagerCompat.java
17
package com.example.
inputmanagercompat
;
25
public interface
InputManagerCompat
{
50
public void registerInputDeviceListener(
InputManagerCompat
.InputDeviceListener listener,
58
public void unregisterInputDeviceListener(
InputManagerCompat
.InputDeviceListener listener);
67
* Pass the motion events to the
InputManagerCompat
. This is used to
132
public static
InputManagerCompat
getInputManager(Context context) {
InputManagerV16.java
17
package com.example.
inputmanagercompat
;
31
public class InputManagerV16 implements
InputManagerCompat
{
34
private final Map<
InputManagerCompat
.InputDeviceListener, V16InputDeviceListener> mListeners;
38
mListeners = new HashMap<
InputManagerCompat
.InputDeviceListener, V16InputDeviceListener>();
52
final
InputManagerCompat
.InputDeviceListener mIDL;
InputManagerV9.java
17
package com.example.
inputmanagercompat
;
33
public class InputManagerV9 implements
InputManagerCompat
{
/development/samples/ControllerSample/src/com/example/controllersample/
GameView.java
19
import com.example.
inputmanagercompat
.
InputManagerCompat
;
20
import com.example.
inputmanagercompat
.
InputManagerCompat
.InputDeviceListener;
70
private final
InputManagerCompat
mInputManager;
107
mInputManager =
InputManagerCompat
.Factory.getInputManager(this.getContext());
[
all
...]
Completed in 112 milliseconds