aapt to buku: add Chinese translation (#4846)

This commit is contained in:
zhouquan
2020-11-04 14:12:56 -06:00
committed by GitHub
parent 7820f75085
commit 8f73cca2e7
28 changed files with 597 additions and 3 deletions

View File

@@ -0,0 +1,38 @@
# adb shell
> 安卓调试桥-Shell: 运行安卓模拟器或者连接设备上的远程终端命令。
> 更多信息: <https://developer.android.com/studio/command-line/adb>.
- 启动模拟器/设备上的远程终端:
`adb shell`
- 获取模拟器/设备全部属性:
`adb shell getprop`
- 查看进程列表
- 重置所有运行时权限为它们的默认值:
`adb shell pm reset-permissions`
- 撤销一个应用的危险权限:
`adb shell pm revoke {{包名}} {{权限}}`
- 触发一个键盘敲击事件:
`adb shell input keyevent {{键位码}}}`
- 清除模拟器/设备上的数据:
`adb shell pm clear {{包名}}`
- 启动模拟器/设备上的一个行为:
`adb shell am start -n {{包名}}/{{活动名}}`
- 启动模拟器/设备上的首页活动:
`adb shell am start -W -c android.intent.category.HOME -a android.intent.action.MAIN`