adb shell input text "&"
不起作用,adb shell input keyevent KEYCODE_AMPERSAND
也不起作用。
与question 7789826相关。
答案 0 :(得分:4)
尝试:
adb shell input text "\&"
答案 1 :(得分:0)
对于任何在未来遇到这种情况的人来说,最终对我有用的逃避不是\&,而是" \&"
,如
adb shell echo Macaroni "\&" Cheese
和不
adb shell echo Macaroni \& Cheese
希望这有助于某人。
对于记录,这是在Windows上。