标签: android shell adb root-access
我希望使用以下方式以编程方式重置Android设备: adb shell recovery --wipe_data
adb shell recovery --wipe_data
答案 0 :(得分:0)
对于运行shell命令,您可以使用Runtime类。有关更多信息,请查看documentation
Runtime
例如:
Runtime.getRuntime().exec("commands_here");