使用uiautomator2模块过去安卓页面密度
时间: 2023-07-26 11:06:25 浏览: 83
基于uiautomator2模块的智慧电脑操控手机功能实现源码
使用uiautomator2模块可以获取当前安卓设备的屏幕密度,步骤如下:
1. 导入uiautomator2模块
```python
from uiautomator2 import *
```
2. 连接安卓设备
```python
d = u2.connect('设备序列号')
```
3. 获取屏幕信息
```python
info = d.info
```
4. 获取屏幕密度
```python
density = info['displayDensity']
```
其中,density的值为当前设备的屏幕密度。
阅读全文