In Android Lollipop, I can only see the estimated time how long the device will be up. But I want to know how long my device is already running - where can I find this information? (Can't (and dont want to) believe it was removed completely from Lollipop...)
Asked
Active
Viewed 2.0k times
2 Answers
11
Go to Settings > About Phone > Status
and scroll to the end of the options. You'll see the up time.

Pramod Karandikar
- 1,578
- 3
- 14
- 22
-
This no longer works on the Pixel 3 – Splaktar Mar 21 '19 at 06:10
6
Simply run the uptime
command inside a terminal (eg. via adb
or through Terminal Emulator).
You will get an output telling you how long the device is running for since the last boot.
Example output: up time: 02:57:16, idle time 10:21:25, sleep time 00:00:000
up time
: as you may have expected, it's the time since boot.idle time
: I currently don't know much about where this time comes from/how it is generated; it seems to be the time it was idling in the past 12 hours.sleep time
: seems to be broken,00:00:000
is the time I get even though the phone was asleep most of the time.

GiantTree
- 4,062
- 1
- 20
- 26
-
Thx for this suggestion. Is it correct that it's not possible to see the uptime at the device itself? I mean you can read it from the graph, but thats not really comfortable. – user2345998 Jan 14 '15 at 07:21
-
1@user2345998 See Pramod's answer. It's a little bit deep in the settings but there is a way. – GiantTree Jan 14 '15 at 14:37