You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
api-impl: add misc stuff needed by Teeter
note that Teeter still needs more stuff before it will work
This commit is contained in:
14
src/api-impl/android/hardware/input/InputManager.java
Normal file
14
src/api-impl/android/hardware/input/InputManager.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package android.hardware.input;
|
||||
|
||||
import android.os.Handler;
|
||||
|
||||
public class InputManager {
|
||||
public static interface InputDeviceListener {
|
||||
abstract void onInputDeviceAdded(int deviceId);
|
||||
abstract void onInputDeviceChanged(int deviceId);
|
||||
abstract void onInputDeviceRemoved(int deviceId);
|
||||
}
|
||||
|
||||
public void registerInputDeviceListener(InputManager.InputDeviceListener listener, Handler handler) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user