文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

第二节-安卓多屏双屏实战车载车机智能驾驶舱开发/千里马android framwork开发

2023-09-21 16:48

关注

hi,粉丝朋友们!
上一节已经对车载的多屏互动进行了相关的技术方案介绍,以及相关的核心方法
moveRootTaskToDisplay的讲解和使用。
具体可以参考链接:https://blog.csdn.net/learnframework/article/details/130461689
本节就来进行代码实战

1、方案设计

要实现双屏互动,主要就只需要两个步骤:
1、手指动作识别
2、识别动作后触发寻找display,获取顶部task,触发moveTask操作
在这里插入图片描述

2、手势动作识别部分

触发手势设计:因为模拟器实现条件有限,所以这里采用是双指向右移动一定距离触发。
首先要进行对手指全局移动的监听,针对多个手指的触摸移动动作要进行识别。
代码实现:
单独建立一个PointerEventListener的实现子类叫做DoubleScreenMovePointerEventListener,在这里面的onPointerEvent方法即可以实现对应的触摸动作识别,这里实现是双指同时滑动触摸方式:

diff --git a/services/core/java/com/android/server/wm/DoubleScreenMovePointerEventListener.java b/services/core/java/com/android/server/wm/DoubleScreenMovePointerEventListener.javanew file mode 100644index 000000000000..f9c765476d19--- /dev/null+++ b/services/core/java/com/android/server/wm/DoubleScreenMovePointerEventListener.java@@ -0,0 +1,62 @@+package com.android.server.wm;++import android.view.MotionEvent;+import android.view.WindowManagerPolicyConstants;++public class DoubleScreenMovePointerEventListener implements WindowManagerPolicyConstants.PointerEventListener {+    boolean shouldBeginMove = false;+    int mPoint0FirstX = 0;+    int mPoint1FirstX = 0;++    int mPoint0LastX = 0;+    int mPoint1LastX = 0;+    int START_GAP = 20;//动作触发阈值,最少移动为20个像素才可以+    private final WindowManagerService mService;++    public DoubleScreenMovePointerEventListener(WindowManagerService mService, DisplayContent mDisplayContent) {+        this.mService = mService;+        this.mDisplayContent = mDisplayContent;+    }++    private final DisplayContent mDisplayContent;++    @Override+    public void onPointerEvent(MotionEvent motionEvent) {+        android.util.Log.i("DoubleScreenTouch","DoubleScreenMovePointerEventListener onPointerEvent motionEvent = "+motionEvent);+        switch (motionEvent.getActionMasked()) {+            case MotionEvent.ACTION_DOWN:+            case MotionEvent.ACTION_POINTER_DOWN:+                if (motionEvent.getPointerCount() > 2) {+                    shouldBeginMove = false;+                    android.util.Log.i("DoubleScreen","DoubleScreenMovePointerEventListener motionEvent.getPointerCount() > 2 end DoubleScreenMove ");+                }+                if (motionEvent.getPointerCount() == 2) {+                    if (mPoint0FirstX == 0 && mPoint1FirstX == 0) {+                        mPoint0FirstX = (int)motionEvent.getX(0);+                        mPoint1FirstX = (int)motionEvent.getX(1);+                    }+                }+                break;+           case MotionEvent.ACTION_MOVE:+               if (motionEvent.getPointerCount() == 2) {+                   if (!shouldBeginMove && motionEvent.getX(0)  - mPoint0FirstX > START_GAP &&+                           motionEvent.getX(1)  - mPoint1FirstX > START_GAP) { //识别了双指动作达到触发task移动条件,则调用对应mDisplayContent.doTestMoveTaskToOtherDisplay方法+                       android.util.Log.i("DoubleScreen","DoubleScreenMovePointerEventListener start DoubleScreenMove ");+                       shouldBeginMove = true;+                       mDisplayContent.doTestMoveTaskToOtherDisplay();+                   }++                   mPoint0LastX = (int)motionEvent.getX(0);+                   mPoint1LastX = (int)motionEvent.getX(1);+               }+               break;+           case MotionEvent.ACTION_POINTER_UP:+           case MotionEvent.ACTION_UP:+               shouldBeginMove = false;+               mPoint0FirstX = mPoint1FirstX =0;+               android.util.Log.i("DoubleScreen","DoubleScreenMovePointerEventListener ACTION_UP end DoubleScreenMove ");+               break;+       }+    }++}

同时不要忘记需要把这个PointEventListener让displaycontent注册监听:

@@ -1063,7 +1085,9 @@ class DisplayContent extends RootDisplayArea implements WindowManagerPolicy.Disp         // 1. All physical displays (multi-display).         // 2. VirtualDisplays on VR, AA (and everything else).         mTapDetector = new TaskTapPointerEventListener(mWmService, this);//需要传递WMS和DisplayContent方便调用+        mDoubleScreenMoveListener = new DoubleScreenMovePointerEventListener(mWmService, this);         registerPointerEventListener(mTapDetector);+        registerPointerEventListener(mDoubleScreenMoveListener);         registerPointerEventListener(mWmService.mMousePositionTracker);         if (mWmService.mAtmService.getRecentTasks() != null) {             registerPointerEventListener(

寻找当前Display的Task,移动到目标display
触摸动作识别后会调用DisplayContent的doTestMoveTaskToOtherDisplay方法来完成剩下的业务:
1、获取要移动到的目标display对象
2、获取当前display要移动的Task对象
3、调用RootWindowContainer的moveRootTaskToDisplay方法来实现

+//add by doublescreenmove+    public void doTestMoveTaskToOtherDisplay() {+        DisplayContent otherDisplay = null;+        if (mRootWindowContainer.getChildCount() == 2) {//检测是不是双屏+            otherDisplay = (mRootWindowContainer.getChildAt(0) == this) ? mRootWindowContainer.getChildAt(1):mRootWindowContainer.getChildAt(0);//获取另一个屏幕的DisplayContent+        }+        if (otherDisplay!= this && otherDisplay!= null) {+            int rootTaskId = 0;+            try {+                Task rootTask = getTopRootTask();//获取当前display的顶部Task+                if (rootTask.isActivityTypeHome()) {//home类型的task不支持移动+                    android.util.Log.i("DoubleScreen","doTestMoveTaskToOtherDisplay isActivityTypeHome");+                    return;+                }+                rootTaskId =rootTask.mTaskId;+                mRootWindowContainer.moveRootTaskToDisplay(rootTaskId,otherDisplay.mDisplayId,true);//把task移动到另一屏+            }catch (Exception e) {+                android.util.Log.i("DoubleScreen","doTestMoveTaskToOtherDisplay Exception",e);+            }+        }+    }+ //end  by doublescreenmove

成果展示:
在这里插入图片描述

模拟器调试要点:

这个部分请关注bibili的 视频
https://www.bilibili.com/video/BV1Tv4y1J7eb

来源地址:https://blog.csdn.net/learnframework/article/details/130463995

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯