Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在开发一款使用多点触控将变焦应用到相机的游戏,但我想在那些没有多点触控功能的设备上放一个放大镜。
我已经搜索了,我找不到答案,
谢谢!
我认为这就是你要找的:
if(getPackageManager().hasSystemFeature(PackageManager.FEATURE_TOUCHSCREEN_MULTITOUCH)) { //do multitouch } else { //do magnifying glass }