我希望使用以下方式以编程方式重置 android 设备:
adb shell
recovery --wipe_data
问问题
593 次
1 回答
0
For running shell commands you can use Runtime
class. For more information check the documentation
For example:
Runtime.getRuntime().exec("commands_here");
于 2014-08-25T18:09:27.637 回答