Home
last modified time | relevance | path

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

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DStretchShaderActivity.java68 LinearLayout linearLayout = new LinearLayout(this); in onCreate() local
69 linearLayout.setOrientation(LinearLayout.VERTICAL); in onCreate()
237 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()
[all …]
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()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
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()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
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()
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
DScreenPinningRequest.java326 LinearLayout linearLayout = (LinearLayout) group; in swapChildrenIfRtlAndVertical() local
327 if (linearLayout.getOrientation() == LinearLayout.VERTICAL) { in swapChildrenIfRtlAndVertical()
328 int childCount = linearLayout.getChildCount(); in swapChildrenIfRtlAndVertical()
331 childList.add(linearLayout.getChildAt(i)); in swapChildrenIfRtlAndVertical()
333 linearLayout.removeAllViews(); in swapChildrenIfRtlAndVertical()
335 linearLayout.addView(childList.get(i)); in swapChildrenIfRtlAndVertical()
/frameworks/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/android/layoutlib/test/myapplication/
DR$id.classR.java package com.android.layoutlib.test.myapplication public final com.android. ...
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarIconController.java125 public DarkIconManager(LinearLayout linearLayout, FeatureFlags featureFlags) { in DarkIconManager() argument
126 super(linearLayout, featureFlags); in DarkIconManager()
/frameworks/base/core/java/android/widget/
DEditor.java3331 LinearLayout linearLayout = new LinearLayout(mTextView.getContext()); in initContentView() local
3332 linearLayout.setOrientation(LinearLayout.HORIZONTAL); in initContentView()
3333 mContentView = linearLayout; in initContentView()