自助建站工具软件,蘑菇街网站建设方案,网站制作完成后如何发布,设计网站得多少钱python 获取android 应用使用情况
本文主要讲述python 脚本获取android 应用使用情况。
主要思路#xff1a;使用adb 获取当前activity ,1s 一次输出。
主要涉及知识点#xff1a;
python 如何执行adb 命令python 获取当前时间python 读写文件python matplotlib的暂停功能…python 获取android 应用使用情况
本文主要讲述python 脚本获取android 应用使用情况。
主要思路使用adb 获取当前activity ,1s 一次输出。
主要涉及知识点
python 如何执行adb 命令python 获取当前时间python 读写文件python matplotlib的暂停功能
具体代码实现如下
#!/usr/bin/python
#codingutf-8
import matplotlib.pyplot as plt
import os
import time
adb_cmd adb shell dumpsys activity | grep \Recent #0\ usage_log.txt
while True:result os.popen(adb_cmd).read()currentTime time.strftime(%Y-%m-%d %H:%M:%S, time.localtime(time.time()))with open(usage_log.txt, r) as f:lines f.readlines();for line in lines:with open(usage.txt, a) as f:f.write(currentTime)f.write(line)plt.pause(1)
具体的输出会生成两个文件
usage_log.txt: * Recent #0: Task{c73bebe #2 visiblefalse typehome modefullscreen translucenttrue Icom.oppo.launcher/.Launcher U0 StackId1 sz1}usage.txt:
2023-11-20 13:39:39 * Recent #0: Task{c73bebe #2 visiblefalse typehome modefullscreen translucenttrue Icom.oppo.launcher/.Launcher U0 StackId1 sz1}
2023-11-20 13:39:40 * Recent #0: Task{c73bebe #2 visiblefalse typehome modefullscreen translucenttrue Icom.oppo.launcher/.Launcher U0 StackId1 sz1}
2023-11-20 13:39:41 * Recent #0: Task{a730670 #648 visibletrue typestandard modefullscreen translucentfalse A10328:com.tencent.mm U0 StackId648 sz3}
2023-11-20 13:39:42 * Recent #0: Task{c73bebe #2 visiblefalse typehome modefullscreen translucenttrue Icom.oppo.launcher/.Launcher U0 StackId1 sz1}
2023-11-20 13:39:44 * Recent #0: Task{d6183e9 #646 visibletrue typestandard modefullscreen translucentfalse A10327:com.ss.android.ugc.aweme U0 StackId646 sz1}
2023-11-20 13:39:45 * Recent #0: Task{d6183e9 #646 visibletrue typestandard modefullscreen translucentfalse A10327:com.ss.android.ugc.aweme U0 StackId646 sz1}
2023-11-20 13:39:46 * Recent #0: Task{c73bebe #2 visiblefalse typehome modefullscreen translucenttrue Icom.oppo.launcher/.Launcher U0 StackId1 sz1}
2023-11-20 13:39:47 * Recent #0: Task{1f4ffa2 #649 visibletrue typestandard modefullscreen translucentfalse A10288:com.zh.xpose U0 StackId649 sz1}
2023-11-20 13:39:49 * Recent #0: Task{6853b11 #650 visibletrue typestandard modefullscreen translucentfalse A10287:com.test.dexpoxed U0 StackId650 sz1}
2023-11-20 13:39:50 * Recent #0: Task{c73bebe #2 visiblefalse typehome modefullscreen translucenttrue Icom.oppo.launcher/.Launcher U0 StackId1 sz1}
2023-11-20 13:39:51 * Recent #0: Task{a730670 #648 visibletrue typestandard modefullscreen translucentfalse A10328:com.tencent.mm U0 StackId648 sz3}
2023-11-20 13:39:52 * Recent #0: Task{c73bebe #2 visiblefalse typehome modefullscreen translucenttrue Icom.oppo.launcher/.Launcher U0 StackId1 sz1}