小编Ind*_*dhu的帖子

将像素转换为dp

我创建了我的应用程序,其高度和宽度以像素为单位,用于分辨率为480x800的Pantech设备.

我需要转换G1设备的高度和宽度.我认为将其转换为dp将解决问题,并为两种设备提供相同的解决方案.

有没有简单的方法将像素转换为dp?有什么建议?

android resolution pixel dpi

789
推荐指数
26
解决办法
64万
查看次数

Firebase 函数 - admin.firestore() get() 在本地服务上引发身份验证错误

我有一个 firebase 云函数,它从云 Firestore 获取数据。

const userSnapshot = await admin.firestore().collection('users').doc(user).get()
Run Code Online (Sandbox Code Playgroud)

当使用firebase emulators:start.

我收到以下错误:

The Cloud Firestore emulator is not running so database operations will fail with a 'default credentials' error.
?  Google API requested!
   - URL: "https://oauth2.googleapis.com/token"
   - Be careful, this may be a production service.
>  Auth error:Error: invalid_grant
Run Code Online (Sandbox Code Playgroud)

只有在更新 firebase-tools 后才会发生这种情况。以前使用firebase serve --only function --port=9000. 在此工具版本中,我无法通过命令行设置端口。

firebase firebase-admin google-cloud-firestore firebase-cli

5
推荐指数
1
解决办法
1906
查看次数