Home
last modified time | relevance | path

Searched refs:linearLayout (Results 1 – 9 of 9) sorted by relevance

/aosp14/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DStretchShaderActivity.java237 linearLayout.addView(mImageView, in onCreate()
243 linearLayout.addView(overscrollXText, in onCreate()
248 linearLayout.addView(overscrollXBar, in onCreate()
255 linearLayout.addView(overscrollYText, in onCreate()
260 linearLayout.addView(overscrollYBar, in onCreate()
267 linearLayout.addView(scrollXText, in onCreate()
273 linearLayout.addView(scrollXSeekBar, in onCreate()
279 linearLayout.addView(scrollYText, in onCreate()
285 linearLayout.addView(scrollYSeekBar, in onCreate()
322 linearLayout.addView(test, in onCreate()
[all …]
H A DMarqueeActivity.java34 final LinearLayout linearLayout = new LinearLayout(this); in onCreate() local
35 linearLayout.setOrientation(LinearLayout.VERTICAL); in onCreate()
42 linearLayout.addView(text1, new LinearLayout.LayoutParams( in onCreate()
52 linearLayout.addView(text2, params); in onCreate()
54 setContentView(linearLayout); in onCreate()
H A DColorBitmapActivity.java144 LinearLayout linearLayout = new LinearLayout(this); in onCreate() local
145 linearLayout.setOrientation(LinearLayout.VERTICAL); in onCreate()
172 linearLayout.addView(spinnerLayout, new LinearLayout.LayoutParams( in onCreate()
176 linearLayout.addView(imageViewText, new LinearLayout.LayoutParams( in onCreate()
179 linearLayout.addView(mImageView, new LinearLayout.LayoutParams(WIDTH, HEIGHT)); in onCreate()
180 linearLayout.addView(textureViewText, new LinearLayout.LayoutParams( in onCreate()
183 linearLayout.addView(mTextureView, new LinearLayout.LayoutParams(WIDTH, HEIGHT)); in onCreate()
184 linearLayout.addView(surfaceViewText, new LinearLayout.LayoutParams( in onCreate()
187 linearLayout.addView(mSurfaceView, new LinearLayout.LayoutParams(WIDTH, HEIGHT)); in onCreate()
189 setContentView(linearLayout); in onCreate()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
H A DScrollViewActivity.java33 LinearLayout linearLayout = new LinearLayout(this); in onCreate() local
34 linearLayout.setOrientation(LinearLayout.VERTICAL); in onCreate()
38 linearLayout.addView(text); in onCreate()
39 scrollView.addView(linearLayout); in onCreate()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSScrollLayout.java52 LinearLayout linearLayout = new LinearLayout(mContext); in QSScrollLayout() local
53 linearLayout.setLayoutParams(new LinearLayout.LayoutParams( in QSScrollLayout()
56 linearLayout.setOrientation(LinearLayout.VERTICAL); in QSScrollLayout()
58 linearLayout.addView(view); in QSScrollLayout()
60 addView(linearLayout); in QSScrollLayout()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DScreenPinningRequest.java358 LinearLayout linearLayout = (LinearLayout) group; in swapChildrenIfRtlAndVertical() local
359 if (linearLayout.getOrientation() == LinearLayout.VERTICAL) { in swapChildrenIfRtlAndVertical()
360 int childCount = linearLayout.getChildCount(); in swapChildrenIfRtlAndVertical()
363 childList.add(linearLayout.getChildAt(i)); in swapChildrenIfRtlAndVertical()
365 linearLayout.removeAllViews(); in swapChildrenIfRtlAndVertical()
367 linearLayout.addView(childList.get(i)); in swapChildrenIfRtlAndVertical()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyboard/backlight/ui/view/
H A DKeyboardBacklightDialog.kt193 val linearLayout = regex
214 linearLayout.background = drawable
215 return linearLayout
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarIconController.java160 LinearLayout linearLayout, in DarkIconManager() argument
166 super(linearLayout, in DarkIconManager()
/aosp14/frameworks/base/core/java/android/widget/
H A DEditor.java3569 LinearLayout linearLayout = new LinearLayout(mTextView.getContext()); in initContentView() local
3570 linearLayout.setOrientation(LinearLayout.HORIZONTAL); in initContentView()
3571 mContentView = linearLayout; in initContentView()