編輯:關於android開發
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);
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。
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; } }
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。
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); } }
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(); } }
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 Bitmap占用內存計算公式,androidbitmap Android對各分辨率的定義 當圖片以格式ARGB_8888存儲時的計算方式 占用內存=圖片長
Linux內核系列—4.操作系統開發之LDT,linuxldt一直以來,我們把所有的段描述符都放在GDT中,而不管它屬於內核還是用戶程序,為了有效地在任務之間實施隔離,處
QQ5.0側滑,qq5.0package com.example; import android.os.Bundle; import android.support.v7
android四大組件之Broadcast,androidbroadcast 廣播的概念 現實中:我們常常使用電台通過發送廣播發布消息,買個收音機,就能收聽 Andro