android: how can I verify, that device support multitouch?

前端 未结 4 2147
盖世英雄少女心
盖世英雄少女心 2021-01-04 04:19

How can I verify, that device support multitouch event? If device have resistent display, multitouch is not possible. Is that way to find out, what kind of display is in dev

4条回答
  •  日久生厌
    2021-01-04 04:39

    public final String SUPPORT = "Supported";
    public final String NOT_SUPPORT = "None";
    
    if (getPackageManager().hasSystemFeature(
                    PackageManager.FEATURE_TOUCHSCREEN_MULTITOUCH)) {
                aDisplayInfo.multiTouch = SUPPORT;
            } else {
                aDisplayInfo.multiTouch = NOT_SUPPORT;
            }
    

提交回复
热议问题