如何从 DDMS 内部设置模拟器上的时间?

发布于 2024-12-11 18:14:32 字数 32 浏览 0 评论 0原文

如何从 DDMS 内部设置模拟器的时间?是否可以?

How do you set the time of the emulator from inside of DDMS? Is it possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

生生不灭 2024-12-18 18:14:32

我使用这个 shell 脚本来设置模拟器上的时间:

#!/bin/bash
adb shell date $(date --date="$1" +%s)

该脚本采用一个参数,即您也想要设置模拟器的日期。有关详细信息,请查看 date 命令。

I use this shell script to set the time on my emulator:

#!/bin/bash
adb shell date $(date --date="$1" +%s)

The script takes one argument, the date that you want to set the emulator too. For more information, checkout the date command.

远山浅 2024-12-18 18:14:32

为什么不像普通 Android 设备一样使用模拟器并从那里设置时间呢?

Why not just use the emulator like a normal Android device and set the time from there?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文