如何检测Android设备的屏幕是电容式还是电阻式?
我正在开发一个应用程序,根据屏幕类型,其行为会略有不同。有什么办法可以检测到吗?
I am developing an application that will behave slightly different depending on the type of screen. Is there any way to detect it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
android.content.res.Configuration
包含一个名为touchscreen
的值,可以是TOUCHSCREEN_STYLUS
(=resistive)、TOUCHSCREEN_FINGER
>(=电容式)、TOUCHSCREEN_NOTOUCH
(=无触摸屏)、TOUCHSCREEN_UNDEFINED
(=呃哦)。编辑:我又得到了黛安:)所以 - 最重要的是,似乎没有办法获得屏幕的实际物理属性。我想你最好的选择是设置一个允许用户在两种模式之间切换的设置。
android.content.res.Configuration
contains a value calledtouchscreen
, which could beTOUCHSCREEN_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.
我有一个小技巧可以做到这一点,但需要画布。
仅在 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 :(