Files
android_translation_layer/src/api-impl/android/hardware/input/InputManager.java

15 lines
402 B
Java
Raw Normal View History

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) {
}
}