0

我的设备是有根的。

我知道要重启设备,我们使用 shell 命令“su -c reboot”。在其他一些帖子中,我看到人们将关机命令发布为“su -c shutdown”,但这不起作用,并且还有一个名为 ACTION_SHUTDOWN 的权限,但这些权限用于系统应用程序。

有没有关闭设备的命令?

4

1 回答 1

1
/**
 * Low-level function turn the device off immediately, without trying
 * to be clean.  Most people should use
 * {@link android.internal.app.ShutdownThread} for a clean shutdown.
 *
 * @deprecated
 * @hide
 */
@Deprecated
public static native void shutdown();

尝试使用:

su reboot -p.

这适用于某些设备,但它不会完全关闭。

于 2013-03-07T15:47:03.863 回答