如何检测Android设备的屏幕是电容式还是电阻式?

发布于 2024-10-05 04:08:15 字数 47 浏览 5 评论 0原文

我正在开发一个应用程序,根据屏幕类型,其行为会略有不同。有什么办法可以检测到吗?

I am developing an application that will behave slightly different depending on the type of screen. Is there any way to detect it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

末骤雨初歇 2024-10-12 04:08:15

android.content.res.Configuration 包含一个名为 touchscreen 的值,可以是 TOUCHSCREEN_STYLUS (=resistive)、TOUCHSCREEN_FINGER >(=电容式)、TOUCHSCREEN_NOTOUCH(=无触摸屏)、TOUCHSCREEN_UNDEFINED(=呃哦)。

编辑:我又得到了黛安:)所以 - 最重要的是,似乎没有办法获得屏幕的实际物理属性。我想你最好的选择是设置一个允许用户在两​​种模式之间切换的设置。

android.content.res.Configuration contains a value called touchscreen, which could be TOUCHSCREEN_STYLUS (=resistive), TOUCHSCREEN_FINGER (=capacitive), TOUCHSCREEN_NOTOUCH (=no touch screen), TOUCHSCREEN_UNDEFINED (=uh oh).

EDIT: I got Dianne'd again :) So - bottom line, it seems like there is no way to get the actual physical properties of the screen. I guess your best bet is to have a setting to allow users to switch between your two modes.

压抑⊿情绪 2024-10-12 04:08:15

我有一个小技巧可以做到这一点,但需要画布。
仅在 MotionEvent 中检测

event.getPressure() > 0则为电容性; event.getSize() > > 0 那么是电阻性的,

问题是我不想使用画布来检测它:(

I have a small trick to do it but requires a canvas.
Just detecting in a motionEvent if

event.getPressure() > 0 then is capacitive ; event.getSize() > 0 then is resistive

the problem is I dont want to use a canvas just for detecting it :(

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文