Ejemplo n.º 1
0
 public static void Key(string deviceID, ADBKeyEvent key)
 {
     string cmdCommand = string.Format(KEY_DEVICES, deviceID, key);
     string result     = ExecuteCMD(cmdCommand);
 }
Ejemplo n.º 2
0
 public void Key(ADBKeyEvent key) => AdbCommand($"shell input keyevent {(int)key}");
Ejemplo n.º 3
0
 public static void Key(string deviceID, ADBKeyEvent key)
 {
     string str2 = ExecuteCMD(string.Format(KEY_DEVICES, deviceID, key));
 }