返回顶部
首页 > 资讯 > 移动开发 >Android中Window添加View的底层原理
  • 317
分享到

Android中Window添加View的底层原理

viewAndroid 2022-06-06 08:06:10 317人浏览 独家记忆
摘要

一、WIndow和windowManager Window是一个抽象类,它的具体实现是PhoneWindow,创建一个window很简单,只需要创建一个windowManage

一、WIndow和windowManager
Window是一个抽象类,它的具体实现是PhoneWindow,创建一个window很简单,只需要创建一个windowManager即可,window具体实现在windowManagerService中,windowManager和windowManagerService的交互是一个IPC的过程。
下面是用windowManager的例子:


mFloatingButton = new Button(this); 
      mFloatingButton.setText( "window"); 
      mLayoutParams = new WindowManager.LayoutParams( 
          LayoutParams. WRAP_CONTENT, LayoutParams.WRAP_CONTENT, 0, 0, 
          PixelFORMat. TRANSPARENT); 
      mLayoutParams. flags = LayoutParams.FLAG_NOT_TOUCH_MODAL 
          | LayoutParams. FLAG_NOT_FOCUSABLE 
          | LayoutParams. FLAG_SHOW_WHEN_LOCKED; 
      mLayoutParams. type = LayoutParams. TYPE_SYSTEM_ERROR; 
      mLayoutParams. gravity = Gravity. LEFT | Gravity. TOP; 
      mLayoutParams. x = 100; 
      mLayoutParams. y = 300; 
      mFloatingButton.setOnTouchListener( this); 
      mWindowManager.addView( mFloatingButton, mLayoutParams);  

flags和type两个属性很重要,下面对一些属性进行介绍,首先是flags:
FLAG_NOT_TOUCH_MODAL表示不需要获取焦点,也不需要接收各种输入,最终事件直接传递给下层具有焦点的window。
FLAG_NOT_FOCUSABLE:在此window外的区域单击事件传递到底层window中。当前的区域则自己处理,这个一般都要设置,很重要。
FLAG_SHOW_WHEN_LOCKED :开启可以让window显示在屏界面上。
再来看下type这个参数:
window有三种类型:应用window,子window,系统window。应用类对应一个Activity,子Window不能单独存在,需要附属在父Window上,比如常用的Dialog。系统Window是需要声明权限再创建的window,如toast等。
window有z-ordered属性,层级越大,越在顶层。应用window层级1-99,子window1000-1999,系统2000-2999。这此层级对应着windowManager的type参数。系统层级常用的有两个TYPE_SYSTEM_OVERLAY或者TYPE_SYSTEM_ERROR。比如想用TYPE_SYSTEM_ERROR,只需
mLayoutParams.type = LayoutParams.TYPE_SYSTEM_ERROR。还要添加权限<uses-permission andorid:name="Android.permission.SYSTEM_ALERT_WINDOW"/>。
有了对window的基本认识之后,我们来看下它底层如何实现加载View的。
二、window的创建
其实Window的创建跟之前我写的一篇博客LayoutInflater源码分析有点相似。Window的创建是在Activity创建的attach方法中,通过PolicyManager的makeNewWindow方法。Activity中实现了Window的Callback接口,因此当window状态改变时就会回调Activity方法。如onAttachedToWindow等。PolicyManager的真正实现类是Policy,看下它的代码:


public Window makeNewWindow(Context context) { 
    return new PhoneWindow(context); 
  } 

到此Window创建完成。
下面分析view是如何附属到window上的。看Activity的setContentView方法。


public void setContentView(int layoutResID) { 
    getWindow().setContentView(layoutResID); 
    initWindowDecorActionBar(); 
  } 

两部分,设置内容和设置ActionBar。window的具体实现是PhoneWindow,看它的setContent。


public void setContentView(int layoutResID) { 
    // Note: FEATURE_CONTENT_TRANSITIONS may be set in the process of installing the window 
    // decor, when theme attributes and the like are crystalized. Do not check the feature 
    // before this happens. 
    if (mContentParent == null) { 
      installDecor(); 
    } else if (!hasFeature(FEATURE_CONTENT_TRANSITIONS)) { 
      mContentParent.removeAllViews(); 
    } 
    if (hasFeature(FEATURE_CONTENT_TRANSITIONS)) { 
      final Scene newScene = Scene.getSceneForLayout(mContentParent, layoutResID, 
          getContext()); 
      transitionTo(newScene); 
    } else { 
      mLayoutInflater.inflate(layoutResID, mContentParent); 
    } 
    final Callback cb = getCallback(); 
    if (cb != null && !isDestroyed()) { 
      cb.onContentChanged(); 
    } 
  }  

看到了吧,又是分析它。
这里分三步执行:
1.如果没有DecorView,在installDecor中的generateDecor()创建DecorView。之前就分析过,这次就不再分析它了。
2.将View添加到decorview中的mContentParent中。
3.回调Activity的onContentChanged接口。
经过以上操作,DecorView创建了,但还没有正式添加到Window中。在ActivityResumeActivity中首先会调用Activity的onResume,再调用Activity的makeVisible,makeVisible中真正添加view ,代码如下:


void makeVisible() { 
   if (!mWindowAdded) { 
     ViewManager wm = getWindowManager(); 
     wm.addView(mDecor, getWindow().getAttributes()); 
     mWindowAdded = true; 
   } 
   mDecor.setVisibility(View.VISIBLE); 
 } 

通过上面的addView方法将View添加到Window。
三、Window操作View内部机制
1.window的添加
一个window对应一个view和一个viewRootImpl,window和view通过ViewRootImpl来建立联系,它并不存在,实体是view。只能通过 windowManager来操作它。
windowManager的实现类是windowManagerImpl。它并没有直接实现三大操作,而是委托给WindowManagerGlobal。addView的实现分为以下几步:
1).检查参数是否合法。


if (view == null) { 
      throw new IllegalArgumentException("view must not be null"); 
    } 
    if (display == null) { 
      throw new IllegalArgumentException("display must not be null"); 
    } 
    if (!(params instanceof WindowManager.LayoutParams)) { 
      throw new IllegalArgumentException("Params must be WindowManager.LayoutParams"); 
    } 
    final WindowManager.LayoutParams wparams = (WindowManager.LayoutParams)params; 
    if (parentWindow != null) { 
      parentWindow.adjustLayoutParamsForSubWindow(wparams); 
    } else { 
      // If there's no parent and we're running on L or above (or in the 
      // system context), assume we want hardware acceleration. 
      final Context context = view.getContext(); 
      if (context != null 
          && context.getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.LOLLIPOP) { 
        wparams.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED; 
      } 
    } 

2).创建ViewRootImpl并将View添加到列表中。


root = new ViewRootImpl(view.getContext(), display); 
      view.setLayoutParams(wparams); 
      mViews.add(view); 
      mRoots.add(root); 
      mParams.add(wparams); 

3).通过ViewRootImpl来更新界面并完成window的添加过程 。
root.setView(view, wparams, panelParentView); 
上面的root就是ViewRootImpl,setView中通过requestLayout()来完成异步刷新,看下requestLayout:


public void requestLayout() { 
    if (!mHandlingLayoutInLayoutRequest) { 
      checkThread(); 
      mLayoutRequested = true; 
      scheduleTraversals(); 
    } 
  } 

接下来通过windowsession来完成window添加过程,WindowSession是一个Binder对象,真正的实现类是 Session,window的添加是一次IPC调用。


 try { 
          mOrigWindowType = mWindowAttributes.type; 
          mAttachInfo.mRecomputeGlobalAttributes = true; 
          collectViewAttributes(); 
          res = mWindowSession.addToDisplay(mWindow, mSeq, mWindowAttributes, 
              getHostVisibility(), mDisplay.getDisplayId(), 
              mAttachInfo.mContentInsets, mAttachInfo.mStableInsets, mInputChannel); 
        } catch (RemoteException e) { 
          mAdded = false; 
          mView = null; 
          mAttachInfo.mRootView = null; 
          mInputChannel = null; 
          mFallbackEventHandler.setView(null); 
          unscheduleTraversals(); 
          setAccessibilityFocus(null, null); 
          throw new RuntimeException("Adding window failed", e); 
} 

 在Session内部会通过WindowManagerService来实现Window的添加。


public int addToDisplay(IWindow window, int seq, WindowManager.LayoutParams attrs, 
     int viewVisibility, int displayId, Rect outContentInsets, Rect outStableInsets, 
     InputChannel outInputChannel) { 
   return mService.addWindow(this, window, seq, attrs, viewVisibility, displayId, 
       outContentInsets, outStableInsets, outInputChannel); 
 } 

在WindowManagerService内部会为每一个应用保留一个单独的session。
2.window的删除
看下WindowManagerGlobal的removeView:


public void removeView(View view, boolean immediate) { 
    if (view == null) { 
      throw new IllegalArgumentException("view must not be null"); 
    } 
    synchronized (mLock) { 
      int index = findViewLocked(view, true); 
      View curView = mRoots.get(index).getView(); 
      removeViewLocked(index, immediate); 
      if (curView == view) { 
        return; 
      } 
      throw new IllegalStateException("Calling with view " + view 
          + " but the ViewAncestor is attached to " + curView); 
    } 
  } 

首先调用findViewLocked来查找删除view的索引,这个过程就是建立数组遍历。然后再调用removeViewLocked来做进一步的删除。


private void removeViewLocked(int index, boolean immediate) { 
    ViewRootImpl root = mRoots.get(index); 
    View view = root.getView(); 
    if (view != null) { 
      InputMethodManager imm = InputMethodManager.getInstance(); 
      if (imm != null) { 
        imm.windowDismissed(mViews.get(index).getWindowToken()); 
      } 
    } 
    boolean deferred = root.die(immediate); 
    if (view != null) { 
      view.assignParent(null); 
      if (deferred) { 
        mDyingViews.add(view); 
      } 
    } 
  } 

真正删除操作是viewRootImpl来完成的。windowManager提供了两种删除接口,removeViewImmediate,removeView。它们分别表示异步删除和同步删除。具体的删除操作由ViewRootImpl的die来完成。


boolean die(boolean immediate) { 
    // Make sure we do execute immediately if we are in the middle of a traversal or the damage 
    // done by dispatchDetachedFromWindow will cause havoc on return. 
    if (immediate && !mIsInTraversal) { 
      doDie(); 
      return false; 
    } 
    if (!mIsDrawing) { 
      destroyHardwareRenderer(); 
    } else { 
      Log.e(TAG, "Attempting to destroy the window while drawing!\n" + 
          " window=" + this + ", title=" + mWindowAttributes.getTitle()); 
    } 
    mHandler.sendEmptyMessage(MSG_DIE); 
    return true; 
  } 

由上可知如果是removeViewImmediate,立即调用doDie,如果是removeView,用handler发送消息,ViewRootImpl中的Handler会处理消息并调用doDie。重点看下doDie:


void doDie() { 
    checkThread(); 
    if (LOCAL_LOGV) Log.v(TAG, "DIE in " + this + " of " + mSurface); 
    synchronized (this) { 
      if (mRemoved) { 
        return; 
      } 
      mRemoved = true; 
      if (mAdded) { 
        dispatchDetachedFromWindow(); 
      } 
      if (mAdded && !mFirst) { 
        destroyHardwareRenderer(); 
        if (mView != null) { 
          int viewVisibility = mView.getVisibility(); 
          boolean viewVisibilityChanged = mViewVisibility != viewVisibility; 
          if (mWindowAttributesChanged || viewVisibilityChanged) { 
            // If layout params have been changed, first give them 
            // to the window manager to make sure it has the correct 
            // animation info. 
            try { 
              if ((relayoutWindow(mWindowAttributes, viewVisibility, false) 
                  & WindowManagerGlobal.RELAYOUT_RES_FIRST_TIME) != 0) { 
                mWindowSession.finishDrawing(mWindow); 
              } 
            } catch (RemoteException e) { 
            } 
          } 
          mSurface.release(); 
        } 
      } 
      mAdded = false; 
    } 
    WindowManagerGlobal.getInstance().doRemoveView(this); 
  } 

主要做四件事:
1.垃圾回收相关工作,比如清数据,回调等。
2.通过Session的remove方法删除Window,最终调用WindowManagerService的removeWindow

3.调用dispathDetachedFromWindow,在内部会调用onDetachedFromWindow()和onDetachedFromWindowInternal()。当view移除时会调用onDetachedFromWindow,它用于作一些资源回收。
4.通过doRemoveView刷新数据,删除相关数据,如在mRoot,mDyingViews中删除对象等。


void doRemoveView(ViewRootImpl root) { 
    synchronized (mLock) { 
      final int index = mRoots.indexOf(root); 
      if (index >= 0) { 
        mRoots.remove(index); 
        mParams.remove(index); 
        final View view = mViews.remove(index); 
        mDyingViews.remove(view); 
      } 
    } 
    if (HardwareRenderer.sTrimForeground && HardwareRenderer.isAvailable()) { 
      doTrimForeground(); 
    } 
  } 

3.更新window
看下WindowManagerGlobal中的updateViewLayout。


public void updateViewLayout(View view, ViewGroup.LayoutParams params) { 
    if (view == null) { 
      throw new IllegalArgumentException("view must not be null"); 
    } 
    if (!(params instanceof WindowManager.LayoutParams)) { 
      throw new IllegalArgumentException("Params must be WindowManager.LayoutParams"); 
    } 
    final WindowManager.LayoutParams wparams = (WindowManager.LayoutParams)params; 
    view.setLayoutParams(wparams); 
    synchronized (mLock) { 
      int index = findViewLocked(view, true); 
      ViewRootImpl root = mRoots.get(index); 
      mParams.remove(index); 
      mParams.add(index, wparams); 
      root.setLayoutParams(wparams, false); 
    } 
  } 

通过viewRootImpl的setLayoutParams更新viewRootImpl的layoutParams,接着scheduleTraversals对view重新布局,包括测量,布局,重绘,此外它还会通过WindowSession来更新window。这个过程由WindowManagerService实现。这跟上面类似,就不再重复,到此Window底层源码就分析完啦。

您可能感兴趣的文章:Android中自定义Window Title样式实例Android中Window的管理深入讲解


--结束END--

本文标题: Android中Window添加View的底层原理

本文链接: https://lsjlt.com/news/25525.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • Android中Window添加View的底层原理
    一、WIndow和windowManager Window是一个抽象类,它的具体实现是PhoneWindow,创建一个window很简单,只需要创建一个windowManage...
    99+
    2022-06-06
    view Android
  • Android 7.1添加一个 系统底层服务
    受疫情影响,自己工作目前又比较忙,很长时间没有更细博客了,最近看了一下底层服务,尝试着添加了一个底层服务,之前写过一个文章是 Android在java层添加服务进行通讯,对Ja...
    99+
    2022-06-06
    系统 Android
  • Android进程被杀底层原理
    当Android设备的内存资源紧张时,操作系统会根据一定的规则选择并终止一些运行的进程,以释放内存空间。这个过程被称为“进程被杀”。...
    99+
    2023-09-08
    Android
  • 深入了解Android IO的底层原理
    目录前言一、应用层1. IO的分类1.1 缓冲和直接1.2 阻塞和异步2. IO流程二、sysCall系统调用三、虚拟文件系统1. VFS结构2. VFS中的缓存3. IO流程四、文...
    99+
    2024-04-02
  • Go 中闭包的底层原理
    目录1. 什么是闭包?2. 复杂的闭包场景3. 闭包的底层原理?4. 迷题揭晓5. 再度变题6. 最后一个问题1. 什么是闭包? 一个函数内引用了外部的局部变...
    99+
    2024-04-02
  • Javasynchronized底层的实现原理
    目录监视器底层实现执行流程总结前言: 想了解 synchronized 是如何运行的?就要先搞清楚 synchronized 是如何实现? synchronized 同步锁是通过 J...
    99+
    2024-04-02
  • HashMap的底层实现原理
    这篇文章主要介绍“HashMap的底层实现原理”,在日常操作中,相信很多人在HashMap的底层实现原理问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”HashMap的底层实现原理”的疑惑有所帮助!接下来,请跟...
    99+
    2023-06-04
  • 详解C++中多态的底层原理
    目录前言1.虚函数表(1)虚函数表指针(2)虚函数表2.虚函数表的继承–重写(覆盖)的原理3.观察虚表的方法(1)内存观察(2)打印虚表(3)虚表的位置4.多态的底层过程...
    99+
    2024-04-02
  • java中CAS的底层原理是什么
    今天就跟大家聊聊有关java中CAS的底层原理是什么,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。常用的java框架有哪些1.SpringMVC,Spring Web MVC是一种基...
    99+
    2023-06-14
  • Java中LinkedHashMap 的底层原理是什么
    本篇文章为大家展示了Java中LinkedHashMap 的底层原理是什么,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。默认情况下,LinkedHashMap的迭代顺序是按照插入节点的顺序。也可以通...
    99+
    2023-06-15
  • linux中mutex的底层原理是什么
    在Linux中,mutex的底层原理主要是基于原子操作和内核态的同步机制来实现的。 具体来说,Linux中的mutex通常是通过sp...
    99+
    2024-03-15
    linux
  • Java中集合底层原理分析
    这篇文章将为大家详细讲解有关Java中集合底层原理分析,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。一、Collection集合Collection接口是单列集合类的父接口,这种集合可以将数据一个一个的存...
    99+
    2023-06-15
  • Docker的底层原理是什么
    Docker的底层原理是什么,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。Docker 能实现这些功能,依赖于 chroot、namespac...
    99+
    2024-04-02
  • redis的底层原理是什么
    这篇文章主要介绍“redis的底层原理是什么”,在日常操作中,相信很多人在redis的底层原理是什么问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”redis的底层原理是什么”...
    99+
    2024-04-02
  • Spring Cloud的底层架构原理
    本篇内容主要讲解“Spring Cloud的底层架构原理”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Spring Cloud的底层架构原理”吧!Eureka首先,我们得说说服务注册中心 Eur...
    99+
    2023-06-19
  • Vue的底层原理是什么
    这篇文章主要介绍Vue的底层原理是什么,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!Observer (数据劫持)核心是通过Obeject.defineProperty()来监听数据的变动,这个函数内部可以定义set...
    99+
    2023-06-29
  • HashMap的底层原理是什么
    这篇文章将为大家详细讲解有关HashMap的底层原理是什么,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。一:HashMap的节点:HashMap是一个集合,键值对的集合,源码中每个节点用No...
    99+
    2023-06-04
  • java 中的HashMap的底层实现和元素添加流程
    目录HashMap 底层实现HashMap 插入流程为什么要将链表转红黑树?哈希算法实现总结前言: HashMap 是使用频率最高的数据类型之一,同时也是面试必问的问题之一,尤其是它...
    99+
    2024-04-02
  • Go语言中的并发goroutine底层原理
    目录一、基本概念①并发、并行区分②从用户态线程,内核态线程阐述go与java并发的优劣②高并发为什么是Go语言强项?③Go语言实现高并发底层GMP模型原理解析二、上代码学会Go语言并...
    99+
    2024-04-02
  • python 中GIL锁的底层原理是什么
    这篇文章将为大家详细讲解有关python 中GIL锁的底层原理是什么,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。python可以做什么Python是一种编程语言,内置了许多有效的工具,Py...
    99+
    2023-06-14
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作