在android上获取电池温度
android 如何获取电池的温度?
How do I get the temperature of the battery in android?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
android 如何获取电池的温度?
How do I get the temperature of the battery in android?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
http://developer.android.com/reference/android/os/BatteryManager.html
公共静态最终字符串 EXTRA_TEMPERATURE
ACTION_BATTERY_CHANGED 的额外内容:包含当前电池温度的整数。
http://developer.android.com/reference/android/os/BatteryManager.html
public static final String EXTRA_TEMPERATURE
Extra for ACTION_BATTERY_CHANGED: integer containing the current battery temperature.
试试这个:
然后在变量声明中定义:
并在 onCreate 中定义:
稍后在 OnClickListener() 中调用
Try this:
then define in your Variable declarations:
and in onCreate:
later call e.g in a OnClickListener()
尝试读取静态 int BatteryManager.EXTRA_TEMPERATURE
Try reading the static int BatteryManager.EXTRA_TEMPERATURE