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/
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/MtpDocumentsProvider/tests/src/com/android/mtp/
DTestResultActivity.java48 final LinearLayout linearLayout = new LinearLayout(this); in onCreate() local
49 linearLayout.setOrientation(LinearLayout.VERTICAL); in onCreate()
50 setContentView(linearLayout); in onCreate()
54 linearLayout.addView( 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.java300 LinearLayout linearLayout = (LinearLayout) group; in swapChildrenIfRtlAndVertical() local
301 if (linearLayout.getOrientation() == LinearLayout.VERTICAL) { in swapChildrenIfRtlAndVertical()
302 int childCount = linearLayout.getChildCount(); in swapChildrenIfRtlAndVertical()
305 childList.add(linearLayout.getChildAt(i)); in swapChildrenIfRtlAndVertical()
307 linearLayout.removeAllViews(); in swapChildrenIfRtlAndVertical()
309 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/
DHardwareUiLayout.java221 LinearLayout linearLayout = (LinearLayout) mList; in rotate() local
223 linearLayout.setOrientation(LinearLayout.HORIZONTAL); in rotate()
234 LinearLayout linearLayout = (LinearLayout) mList; in rotate() local
236 linearLayout.setOrientation(LinearLayout.VERTICAL); in rotate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarIconController.java99 public DarkIconManager(LinearLayout linearLayout) { in DarkIconManager() argument
100 super(linearLayout); in DarkIconManager()
/frameworks/base/core/java/android/widget/
DEditor.java3099 LinearLayout linearLayout = new LinearLayout(mTextView.getContext()); in initContentView() local
3100 linearLayout.setOrientation(LinearLayout.HORIZONTAL); in initContentView()
3101 mContentView = linearLayout; in initContentView()