• 多点触摸技术


     1 //多点触摸  放大,缩小
     2 public class MainActivity extends ActionBarActivity {
     3 
     4     @Override
     5     protected void onCreate(Bundle savedInstanceState) {
     6         super.onCreate(savedInstanceState);
     7         setContentView(R.layout.fragment_main);
     8 
     9     }
    10 
    11     @Override
    12     public boolean onTouchEvent(MotionEvent event) {
    13         // TODO Auto-generated method stub
    14         // 两点触摸
    15         if (event.getPointerCount() == 2) {
    16             if (event.getAction() == MotionEvent.ACTION_MOVE) {
    17                 int historySize = event.getHistorySize();
    18                 if (historySize == 0) {
    19                     return true;
    20                 }
    21                 // 获取第一个手指当前的纵坐标
    22                 float currentY1 = event.getY(0);
    23                 // 获取第一个手指当前最新的历史的纵坐标
    24                 float historyY1 = event.getHistoricalY(0, historySize - 1);
    25                 // 获取第二个手指当前的纵坐标
    26                 float currentY2 = event.getY(2);
    27                 // 获取第二个手指当前最新的历史的纵坐标
    28                 float historyY2 = event.getHistoricalY(1, historySize - 1);
    29                 // 两手指当前纵坐标的距离
    30                 float distance = Math.abs(currentY1 - currentY2);
    31                 // 两手指最新的历史纵坐标的距离
    32                 float historyDistance = Math.abs(historyY1 - historyY2);
    33 
    34                 if (distance > historyDistance) {
    35                     Log.i("-====>", "放大");
    36                 } else if (distance < historyDistance) {
    37                     Log.i("-====>", "缩小");
    38                 } else {
    39                     Log.i("-====>", "移动");
    40                 }
    41             }
    42         }
    43         return super.onTouchEvent(event);
    44     }
    45 
    46 }
  • 相关阅读:
    JS & JQuery 动态处理select option
    如何在Oracle中复制表结构和表数据
    基于cxf的app文件上传接口(带回显功能)
    Jenkins的详细安装及使用--windows
    git用代码库文件完全覆盖本地/git不能提交jar的设置
    Windows平台下Git服务器搭建
    Vue脚手架之Vue-cli
    Vue的生命周期
    Vue状态管理之Vuex
    Vue路由管理之Vue-router
  • 原文地址:https://www.cnblogs.com/my334420/p/6924586.html
Copyright © 2020-2023  润新知