Home
last modified time | relevance | path

Searched refs:LayoutParams (Results 1 – 25 of 273) sorted by relevance

1234567891011

/frameworks/base/core/java/android/widget/
DTableRow.java164 final LayoutParams layoutParams = (LayoutParams) child.getLayoutParams(); in mapIndexAndColumns()
195 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in measureChildBeforeLayout()
227 lp.mOffset[LayoutParams.LOCATION_NEXT] = columnWidth - childWidth; in measureChildBeforeLayout()
236 lp.mOffset[LayoutParams.LOCATION] = lp.mOffset[LayoutParams.LOCATION_NEXT]; in measureChildBeforeLayout()
239 … lp.mOffset[LayoutParams.LOCATION] = lp.mOffset[LayoutParams.LOCATION_NEXT] / 2; in measureChildBeforeLayout()
243 lp.mOffset[LayoutParams.LOCATION] = lp.mOffset[LayoutParams.LOCATION_NEXT] = 0; in measureChildBeforeLayout()
257 LayoutParams layoutParams = (LayoutParams) child.getLayoutParams(); in getChildrenSkipCount()
268 return ((TableRow.LayoutParams) child.getLayoutParams()).mOffset[LayoutParams.LOCATION]; in getLocationOffset()
276 … return ((TableRow.LayoutParams) child.getLayoutParams()).mOffset[LayoutParams.LOCATION_NEXT]; in getNextLocationOffset()
299 final LayoutParams layoutParams = (LayoutParams) child.getLayoutParams(); in getColumnsWidths()
[all …]
DAbsoluteLayout.java72 AbsoluteLayout.LayoutParams lp in onMeasure()
73 = (AbsoluteLayout.LayoutParams) child.getLayoutParams(); in onMeasure()
102 protected ViewGroup.LayoutParams generateDefaultLayoutParams() { in generateDefaultLayoutParams()
103 return new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, 0, 0); in generateDefaultLayoutParams()
115 AbsoluteLayout.LayoutParams lp = in onLayout()
116 (AbsoluteLayout.LayoutParams) child.getLayoutParams(); in onLayout()
129 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) { in generateLayoutParams()
130 return new AbsoluteLayout.LayoutParams(getContext(), attrs); in generateLayoutParams()
135 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { in checkLayoutParams()
136 return p instanceof AbsoluteLayout.LayoutParams; in checkLayoutParams()
[all …]
DRadioGroup.java128 public void addView(View child, int index, ViewGroup.LayoutParams params) { in addView()
226 public LayoutParams generateLayoutParams(AttributeSet attrs) { in generateLayoutParams()
227 return new RadioGroup.LayoutParams(getContext(), attrs); in generateLayoutParams()
234 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { in checkLayoutParams()
235 return p instanceof RadioGroup.LayoutParams; in checkLayoutParams()
239 protected LinearLayout.LayoutParams generateDefaultLayoutParams() { in generateDefaultLayoutParams()
240 return new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); in generateDefaultLayoutParams()
265 public static class LayoutParams extends LinearLayout.LayoutParams { class in RadioGroup
269 public LayoutParams(Context c, AttributeSet attrs) { in LayoutParams() method in RadioGroup.LayoutParams
276 public LayoutParams(int w, int h) { in LayoutParams() method in RadioGroup.LayoutParams
[all …]
DPopupWindow.java86 private int mSoftInputMode = WindowManager.LayoutParams.SOFT_INPUT_STATE_UNCHANGED;
118 private int mWindowLayoutType = WindowManager.LayoutParams.TYPE_APPLICATION_PANEL;
135 WindowManager.LayoutParams p = (WindowManager.LayoutParams)
833 WindowManager.LayoutParams p = createPopupLayout(token); in showAtLocation()
887 WindowManager.LayoutParams p = createPopupLayout(anchor.getWindowToken()); in showAsDropDown()
944 private void preparePopup(WindowManager.LayoutParams p) { in preparePopup()
951 final ViewGroup.LayoutParams layoutParams = mContentView.getLayoutParams(); in preparePopup()
952 int height = ViewGroup.LayoutParams.MATCH_PARENT; in preparePopup()
954 layoutParams.height == ViewGroup.LayoutParams.WRAP_CONTENT) { in preparePopup()
955 height = ViewGroup.LayoutParams.WRAP_CONTENT; in preparePopup()
[all …]
DFrameLayout.java210 protected LayoutParams generateDefaultLayoutParams() { in generateDefaultLayoutParams()
211 return new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT); in generateDefaultLayoutParams()
311 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in onMeasure()
318 if (lp.width == LayoutParams.MATCH_PARENT || in onMeasure()
319 lp.height == LayoutParams.MATCH_PARENT) { in onMeasure()
354 if (lp.width == LayoutParams.MATCH_PARENT) { in onMeasure()
366 if (lp.height == LayoutParams.MATCH_PARENT) { in onMeasure()
401 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in onLayout()
553 public LayoutParams generateLayoutParams(AttributeSet attrs) { in generateLayoutParams()
554 return new FrameLayout.LayoutParams(getContext(), attrs); in generateLayoutParams()
[all …]
DLinearLayout.java326 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in drawDividersVertical()
339 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in drawDividersVertical()
353 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in drawDividersHorizontal()
366 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in drawDividersHorizontal()
489 LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) child.getLayoutParams(); in getBaseline()
655 LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) child.getLayoutParams(); in measureVertical()
674 lp.height = LayoutParams.WRAP_CONTENT; in measureVertical()
718 if (widthMode != MeasureSpec.EXACTLY && lp.width == LayoutParams.MATCH_PARENT) { in measureVertical()
732 allFillParent = allFillParent && lp.width == LayoutParams.MATCH_PARENT; in measureVertical()
769 final LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) in measureVertical()
[all …]
DTableLayout.java415 public void addView(View child, ViewGroup.LayoutParams params) { in addView()
424 public void addView(View child, int index, ViewGroup.LayoutParams params) { in addView()
501 final ViewGroup.LayoutParams layoutParams = row.getLayoutParams(); in findLargestCells()
502 layoutParams.height = LayoutParams.WRAP_CONTENT; in findLargestCells()
635 public LayoutParams generateLayoutParams(AttributeSet attrs) { in generateLayoutParams()
636 return new TableLayout.LayoutParams(getContext(), attrs); in generateLayoutParams()
645 protected LinearLayout.LayoutParams generateDefaultLayoutParams() { in generateDefaultLayoutParams()
646 return new LayoutParams(); in generateDefaultLayoutParams()
653 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { in checkLayoutParams()
654 return p instanceof TableLayout.LayoutParams; in checkLayoutParams()
[all …]
/frameworks/base/core/tests/coretests/src/com/android/internal/widget/
DSizeAdaptiveLayoutTest.java81 SizeAdaptiveLayout.LayoutParams lp = in testOpenLarge()
82 (SizeAdaptiveLayout.LayoutParams) mLargeView.getLayoutParams(); in testOpenLarge()
98 SizeAdaptiveLayout.LayoutParams lp = in testOpenSmall()
99 (SizeAdaptiveLayout.LayoutParams) mSmallView.getLayoutParams(); in testOpenSmall()
115 SizeAdaptiveLayout.LayoutParams lp = in testOpenTooSmall()
116 (SizeAdaptiveLayout.LayoutParams) mSmallView.getLayoutParams(); in testOpenTooSmall()
132 SizeAdaptiveLayout.LayoutParams lp = in testOpenTooBig()
133 (SizeAdaptiveLayout.LayoutParams) mLargeView.getLayoutParams(); in testOpenTooBig()
151 SizeAdaptiveLayout.LayoutParams lp = in testOpenWrapContent()
152 (SizeAdaptiveLayout.LayoutParams) mLargeView.getLayoutParams(); in testOpenWrapContent()
[all …]
/frameworks/base/core/java/com/android/internal/view/menu/
DActionMenuView.java112 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in onMeasure()
171 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in onMeasureExactFormat()
209 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in onMeasureExactFormat()
235 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in onMeasureExactFormat()
265 LayoutParams lp = (LayoutParams) getChildAt(0).getLayoutParams(); in onMeasureExactFormat()
269 LayoutParams lp = ((LayoutParams) getChildAt(childCount - 1).getLayoutParams()); in onMeasureExactFormat()
281 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in onMeasureExactFormat()
317 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in onMeasureExactFormat()
350 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in measureChildForCells()
404 LayoutParams p = (LayoutParams) v.getLayoutParams(); in onLayout()
[all …]
/frameworks/base/core/tests/coretests/src/android/util/
DListItemFactory.java51 final LinearLayout.LayoutParams buttonLp = in twoButtonsSeparatedByFiller()
52 new LinearLayout.LayoutParams( in twoButtonsSeparatedByFiller()
53 ViewGroup.LayoutParams.MATCH_PARENT, in twoButtonsSeparatedByFiller()
63 middleFiller.setLayoutParams(new LinearLayout.LayoutParams( in twoButtonsSeparatedByFiller()
64 ViewGroup.LayoutParams.MATCH_PARENT, in twoButtonsSeparatedByFiller()
96 final LinearLayout.LayoutParams lp in horizontalButtonSlots()
97 = new LinearLayout.LayoutParams(0, desiredHeight); in horizontalButtonSlots()
159 final ViewGroup.LayoutParams lp = new AbsListView.LayoutParams( in button()
160 ViewGroup.LayoutParams.MATCH_PARENT, in button()
161 ViewGroup.LayoutParams.WRAP_CONTENT); in button()
[all …]
/frameworks/base/core/tests/coretests/src/android/view/
DCreateViewTest.java24 import static android.view.ViewGroup.LayoutParams.MATCH_PARENT;
25 import static android.view.ViewGroup.LayoutParams.WRAP_CONTENT;
48 new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); in testLayout2()
56 vert.addView(one, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); in testLayout3()
59 vert.addView(two, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); in testLayout3()
62 vert.addView(three, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); in testLayout3()
65 vert.addView(four, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); in testLayout3()
68 vert.addView(five, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); in testLayout3()
71 vert.addView(six, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); in testLayout3()
86 vert.addView(text, new LinearLayout.LayoutParams(MATCH_PARENT, WRAP_CONTENT, 0)); in testLayout5()
[all …]
DBigCache.java41 testBed.setLayoutParams(new ViewGroup.LayoutParams( in onCreate()
42 ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)); in onCreate()
52 tiny.setLayoutParams(new LinearLayout.LayoutParams(screenWidth, screenHeight)); in onCreate()
59 large.setLayoutParams(new LinearLayout.LayoutParams(screenWidth, height)); in onCreate()
62 scroller.setLayoutParams(new ViewGroup.LayoutParams( in onCreate()
63 ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)); in onCreate()
/frameworks/base/core/tests/coretests/src/android/widget/focus/
DListOfEditTexts.java47 mLinearLayout.setLayoutParams(new ViewGroup.LayoutParams( in onCreate()
48 ViewGroup.LayoutParams.MATCH_PARENT, in onCreate()
49 ViewGroup.LayoutParams.MATCH_PARENT)); in onCreate()
54 new LinearLayout.LayoutParams( in onCreate()
55 ViewGroup.LayoutParams.MATCH_PARENT, in onCreate()
56 ViewGroup.LayoutParams.WRAP_CONTENT)); in onCreate()
62 mListView.setLayoutParams(new ViewGroup.LayoutParams( in onCreate()
63 ViewGroup.LayoutParams.MATCH_PARENT, in onCreate()
64 ViewGroup.LayoutParams.MATCH_PARENT)); in onCreate()
67 mListView.setLayoutParams((new LinearLayout.LayoutParams( in onCreate()
[all …]
DHorizontalFocusSearch.java63 mLayout.setLayoutParams(new ViewGroup.LayoutParams( in onCreate()
64 ViewGroup.LayoutParams.MATCH_PARENT, in onCreate()
65 ViewGroup.LayoutParams.MATCH_PARENT)); in onCreate()
96 button.setLayoutParams(new LinearLayout.LayoutParams( in makeTall()
97 ViewGroup.LayoutParams.WRAP_CONTENT, in makeTall()
98 ViewGroup.LayoutParams.MATCH_PARENT)); in makeTall()
105 button.setLayoutParams(new LinearLayout.LayoutParams( in addShort()
106 ViewGroup.LayoutParams.WRAP_CONTENT, in addShort()
112 filler.setLayoutParams(new LinearLayout.LayoutParams( in addShort()
113 ViewGroup.LayoutParams.WRAP_CONTENT, in addShort()
[all …]
DVerticalFocusSearch.java70 mLayout.setLayoutParams(new ViewGroup.LayoutParams( in onCreate()
71 ViewGroup.LayoutParams.MATCH_PARENT, in onCreate()
72 ViewGroup.LayoutParams.MATCH_PARENT)); in onCreate()
104 button.setLayoutParams(new LinearLayout.LayoutParams( in makeWide()
105 ViewGroup.LayoutParams.MATCH_PARENT, in makeWide()
106 ViewGroup.LayoutParams.WRAP_CONTENT)); in makeWide()
121 button.setLayoutParams(new LinearLayout.LayoutParams( in addSkinny()
123 ViewGroup.LayoutParams.WRAP_CONTENT, in addSkinny()
128 filler.setLayoutParams(new LinearLayout.LayoutParams( in addSkinny()
130 ViewGroup.LayoutParams.WRAP_CONTENT, in addSkinny()
[all …]
DGoneParentFocusedChild.java60 mLayout.setLayoutParams(new ViewGroup.LayoutParams( in onCreate()
61 ViewGroup.LayoutParams.MATCH_PARENT, in onCreate()
62 ViewGroup.LayoutParams.MATCH_PARENT)); in onCreate()
67 mGoneGroup.setLayoutParams(new ViewGroup.LayoutParams( in onCreate()
68 ViewGroup.LayoutParams.MATCH_PARENT, in onCreate()
69 ViewGroup.LayoutParams.MATCH_PARENT)); in onCreate()
72 mButton.setLayoutParams(new LinearLayout.LayoutParams( in onCreate()
73 ViewGroup.LayoutParams.WRAP_CONTENT, in onCreate()
74 ViewGroup.LayoutParams.WRAP_CONTENT)); in onCreate()
/frameworks/base/core/java/com/android/internal/widget/
DSizeAdaptiveLayout.java110 SizeAdaptiveLayout.LayoutParams layout = in initialize()
111 new SizeAdaptiveLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, in initialize()
112 ViewGroup.LayoutParams.MATCH_PARENT); in initialize()
154 SizeAdaptiveLayout.LayoutParams lp = in onMeasure()
155 (SizeAdaptiveLayout.LayoutParams) model.getLayoutParams(); in onMeasure()
171 SizeAdaptiveLayout.LayoutParams lp = in clampSizeToBounds()
172 (SizeAdaptiveLayout.LayoutParams) child.getLayoutParams(); in clampSizeToBounds()
175 if (lp.maxHeight != SizeAdaptiveLayout.LayoutParams.UNBOUNDED) { in clampSizeToBounds()
201 SizeAdaptiveLayout.LayoutParams lp = in selectActiveChild()
202 (SizeAdaptiveLayout.LayoutParams) child.getLayoutParams(); in selectActiveChild()
[all …]
DScrollingTabContainerView.java77 addView(mTabLayout, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, in ScrollingTabContainerView()
78 ViewGroup.LayoutParams.MATCH_PARENT)); in ScrollingTabContainerView()
146 addView(mTabSpinner, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, in performCollapse()
147 ViewGroup.LayoutParams.MATCH_PARENT)); in performCollapse()
162 addView(mTabLayout, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, in performExpand()
163 ViewGroup.LayoutParams.MATCH_PARENT)); in performExpand()
191 tabLayout.setLayoutParams(new LinearLayout.LayoutParams( in createTabLayout()
192 LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.MATCH_PARENT)); in createTabLayout()
199 spinner.setLayoutParams(new LinearLayout.LayoutParams( in createSpinner()
200 LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.MATCH_PARENT)); in createSpinner()
[all …]
/frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
DFakeBackgroundService.java77 dialog.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT); in onCreate()
79 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE in onCreate()
80 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE in onCreate()
81 | WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS in onCreate()
82 | WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED, in onCreate()
83 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE in onCreate()
84 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE in onCreate()
85 | WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS in onCreate()
86 | WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED in onCreate()
87 | WindowManager.LayoutParams.FLAG_DIM_BEHIND); in onCreate()
[all …]
/frameworks/base/policy/src/com/android/internal/policy/impl/
DKeyguardViewManager.java55 private WindowManager.LayoutParams mWindowLayoutParams;
117 final int stretch = ViewGroup.LayoutParams.MATCH_PARENT; in show()
118 int flags = WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN in show()
119 | WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER in show()
120 | WindowManager.LayoutParams.FLAG_SLIPPERY in show()
124 flags |= WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM; in show()
128 flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED; in show()
130 WindowManager.LayoutParams lp = new WindowManager.LayoutParams( in show()
131 stretch, stretch, WindowManager.LayoutParams.TYPE_KEYGUARD, in show()
133 lp.softInputMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE; in show()
[all …]
/frameworks/base/core/java/android/view/
DWindow.java149 private final WindowManager.LayoutParams mWindowAttributes =
150 new WindowManager.LayoutParams();
300 public void onWindowAttributesChanged(WindowManager.LayoutParams attrs); in onWindowAttributesChanged()
500 public final void addView(View view, ViewGroup.LayoutParams params) { in addView()
502 WindowManager.LayoutParams wp = (WindowManager.LayoutParams)params; in addView()
504 if (wp.type >= WindowManager.LayoutParams.FIRST_SUB_WINDOW && in addView()
505 wp.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) { in addView()
514 if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA) { in addView()
516 … } else if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA_OVERLAY) { in addView()
518 } else if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_PANEL) { in addView()
[all …]
/frameworks/support/v4/java/android/support/v4/app/
DListFragment.java105 pframe.addView(progress, new FrameLayout.LayoutParams( in onCreateView()
106 ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT)); in onCreateView()
108 root.addView(pframe, new FrameLayout.LayoutParams( in onCreateView()
109 ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT)); in onCreateView()
119 lframe.addView(tv, new FrameLayout.LayoutParams( in onCreateView()
120 ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT)); in onCreateView()
125 lframe.addView(lv, new FrameLayout.LayoutParams( in onCreateView()
126 ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT)); in onCreateView()
128 root.addView(lframe, new FrameLayout.LayoutParams( in onCreateView()
129 ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT)); in onCreateView()
[all …]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DTextGammaActivity.java41 layout.addView(gamma, new LinearLayout.LayoutParams( in onCreate()
42 LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT in onCreate()
58 layout.addView(image, new LinearLayout.LayoutParams( in onCreate()
59 LinearLayout.LayoutParams.WRAP_CONTENT, in onCreate()
60 LinearLayout.LayoutParams.WRAP_CONTENT in onCreate()
92 final LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams( in onCreate()
93 LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT in onCreate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
DTabletStatusBar.java54 import android.view.ViewGroup.LayoutParams;
150 WindowManager.LayoutParams mNotificationPanelParams;
228 final WindowManager.LayoutParams lp = new WindowManager.LayoutParams( in addStatusBarWindow()
229 ViewGroup.LayoutParams.MATCH_PARENT, in addStatusBarWindow()
230 ViewGroup.LayoutParams.MATCH_PARENT, in addStatusBarWindow()
231 WindowManager.LayoutParams.TYPE_NAVIGATION_BAR, in addStatusBarWindow()
232 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE in addStatusBarWindow()
233 | WindowManager.LayoutParams.FLAG_TOUCHABLE_WHEN_WAKING in addStatusBarWindow()
234 | WindowManager.LayoutParams.FLAG_SPLIT_TOUCH, in addStatusBarWindow()
296 WindowManager.LayoutParams lp = mNotificationPanelParams = new WindowManager.LayoutParams( in addPanelWindows()
[all …]
/frameworks/base/core/java/android/inputmethodservice/
DSoftInputWindow.java39 WindowManager.LayoutParams lp = getWindow().getAttributes(); in setToken()
95 WindowManager.LayoutParams lp = getWindow().getAttributes(); in getSize()
114 WindowManager.LayoutParams lp = getWindow().getAttributes(); in setSize()
135 WindowManager.LayoutParams lp = getWindow().getAttributes(); in setGravity()
152 WindowManager.LayoutParams lp = getWindow().getAttributes(); in initDockWindow()
154 lp.type = WindowManager.LayoutParams.TYPE_INPUT_METHOD; in initDockWindow()
165 WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN | in initDockWindow()
166 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE, in initDockWindow()
167 WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN | in initDockWindow()
168 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE | in initDockWindow()
[all …]

1234567891011