热门标签 | HotTags
当前位置:  开发笔记 > Android > 正文

Android中Window添加View的底层原理

这篇文章主要介绍了Android中Window添加View的底层原理,需要的朋友可以参考下

一、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。还要添加权限
有了对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底层源码就分析完啦。

以上就是本文的全部内容,希望对大家的学习有所帮助。


推荐阅读
  • QUIC协议:快速UDP互联网连接
    QUIC(Quick UDP Internet Connections)是谷歌开发的一种旨在提高网络性能和安全性的传输层协议。它基于UDP,并结合了TLS级别的安全性,提供了更高效、更可靠的互联网通信方式。 ... [详细]
  • 深入理解OAuth认证机制
    本文介绍了OAuth认证协议的核心概念及其工作原理。OAuth是一种开放标准,旨在为第三方应用提供安全的用户资源访问授权,同时确保用户的账户信息(如用户名和密码)不会暴露给第三方。 ... [详细]
  • 2023 ARM嵌入式系统全国技术巡讲旨在分享ARM公司在半导体知识产权(IP)领域的最新进展。作为全球领先的IP提供商,ARM在嵌入式处理器市场占据主导地位,其产品广泛应用于90%以上的嵌入式设备中。此次巡讲将邀请来自ARM、飞思卡尔以及华清远见教育集团的行业专家,共同探讨当前嵌入式系统的前沿技术和应用。 ... [详细]
  • 国内BI工具迎战国际巨头Tableau,稳步崛起
    尽管商业智能(BI)工具在中国的普及程度尚不及国际市场,但近年来,随着本土企业的持续创新和市场推广,国内主流BI工具正逐渐崭露头角。面对国际品牌如Tableau的强大竞争,国内BI工具通过不断优化产品和技术,赢得了越来越多用户的认可。 ... [详细]
  • 深入理解 Oracle 存储函数:计算员工年收入
    本文介绍如何使用 Oracle 存储函数查询特定员工的年收入。我们将详细解释存储函数的创建过程,并提供完整的代码示例。 ... [详细]
  • 本文总结了2018年的关键成就,包括职业变动、购车、考取驾照等重要事件,并分享了读书、工作、家庭和朋友方面的感悟。同时,展望2019年,制定了健康、软实力提升和技术学习的具体目标。 ... [详细]
  • 在计算机技术的学习道路上,51CTO学院以其专业性和专注度给我留下了深刻印象。从2012年接触计算机到2014年开始系统学习网络技术和安全领域,51CTO学院始终是我信赖的学习平台。 ... [详细]
  • CSS 布局:液态三栏混合宽度布局
    本文介绍了如何使用 CSS 实现液态的三栏布局,其中各栏具有不同的宽度设置。通过调整容器和内容区域的属性,可以实现灵活且响应式的网页设计。 ... [详细]
  • Linux 系统启动故障排除指南:MBR 和 GRUB 问题
    本文详细介绍了 Linux 系统启动过程中常见的 MBR 扇区和 GRUB 引导程序故障及其解决方案,涵盖从备份、模拟故障到恢复的具体步骤。 ... [详细]
  • 本文介绍了如何使用jQuery根据元素的类型(如复选框)和标签名(如段落)来获取DOM对象。这有助于更高效地操作网页中的特定元素。 ... [详细]
  • 深入理解Cookie与Session会话管理
    本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ... [详细]
  • 本文介绍如何在 Xcode 中使用快捷键和菜单命令对多行代码进行缩进,包括右缩进和左缩进的具体操作方法。 ... [详细]
  • 本文介绍了一款用于自动化部署 Linux 服务的 Bash 脚本。该脚本不仅涵盖了基本的文件复制和目录创建,还处理了系统服务的配置和启动,确保在多种 Linux 发行版上都能顺利运行。 ... [详细]
  • 在Linux系统中配置并启动ActiveMQ
    本文详细介绍了如何在Linux环境中安装和配置ActiveMQ,包括端口开放及防火墙设置。通过本文,您可以掌握完整的ActiveMQ部署流程,确保其在网络环境中正常运行。 ... [详细]
  • 如何在WPS Office for Mac中调整Word文档的文字排列方向
    本文将详细介绍如何使用最新版WPS Office for Mac调整Word文档中的文字排列方向。通过这些步骤,用户可以轻松更改文本的水平或垂直排列方式,以满足不同的排版需求。 ... [详细]
author-avatar
沸腾的热水_948
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有