Searched refs:mLp (Results 1 – 5 of 5) sorted by relevance
47 private WindowManager.LayoutParams mLp; field in DividerWindowManager56 mLp = new WindowManager.LayoutParams( in add()61 mLp.token = new Binder(); in add()62 mLp.setTitle(WINDOW_TITLE); in add()81 if (slippery && (mLp.flags & FLAG_SLIPPERY) == 0) { in setSlippery()82 mLp.flags |= FLAG_SLIPPERY; in setSlippery()85 mLp.flags &= ~FLAG_SLIPPERY; in setSlippery()89 mSystemWindows.updateViewLayout(mView, mLp); in setSlippery()99 mLp.flags |= FLAG_NOT_TOUCHABLE; in setTouchable()102 mLp.flags &= ~FLAG_NOT_TOUCHABLE; in setTouchable()[all …]
51 private WindowManager.LayoutParams mLp; field in SystemUIOverlayWindowController93 mLp = new WindowManager.LayoutParams( in attach()103 mLp.token = new Binder(); in attach()104 mLp.gravity = Gravity.TOP; in attach()106 mLp.setTitle("SystemUIOverlayWindow"); in attach()107 mLp.packageName = mContext.getPackageName(); in attach()109 mLp.insetsFlags.behavior = BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE; in attach()111 mWindowManager.addView(mBaseLayout, mLp); in attach()112 mLpChanged.copyFrom(mLp); in attach()176 if (mLp != null && mLp.copyFrom(mLpChanged) != 0) { in updateWindow()[all …]
96 private LayoutParams mLp; field in NotificationShadeWindowControllerImpl208 mLp = new LayoutParams( in attach()218 mLp.token = new Binder(); in attach()219 mLp.gravity = Gravity.TOP; in attach()220 mLp.setFitInsetsTypes(0 /* types */); in attach()222 mLp.setTitle("NotificationShade"); in attach()223 mLp.packageName = mContext.getPackageName(); in attach()229 mLp.privateFlags |= PRIVATE_FLAG_BEHAVIOR_CONTROLLED; in attach()232 mWindowManager.addView(mNotificationShadeView, mLp); in attach()233 mLpChanged.copyFrom(mLp); in attach()[all …]
77 private WindowManager.LayoutParams mLp; field in StatusBarWindowController129 mLp = getBarLayoutParams(mContext.getDisplay().getRotation()); in attach()131 mWindowManager.addView(mStatusBarWindowView, mLp); in attach()132 mLpChanged.copyFrom(mLp); in attach()297 if (mLp != null && mLp.copyFrom(mLpChanged) != 0) {298 mWindowManager.updateViewLayout(mStatusBarWindowView, mLp);
128 ViewGroup.MarginLayoutParams mLp = (ViewGroup.MarginLayoutParams) eca.getLayoutParams(); in updateMargins() local129 mLp.topMargin = marginTop; in updateMargins()130 eca.setLayoutParams(mLp); in updateMargins()