Searched refs:linearLayout (Results 1 – 8 of 8) sorted by relevance
68 LinearLayout linearLayout = new LinearLayout(this); in onCreate() local69 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 …]
34 final LinearLayout linearLayout = new LinearLayout(this); in onCreate() local35 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()
33 LinearLayout linearLayout = new LinearLayout(this); in onCreate() local34 linearLayout.setOrientation(LinearLayout.VERTICAL); in onCreate()38 linearLayout.addView(text); in onCreate()39 scrollView.addView(linearLayout); in onCreate()
52 LinearLayout linearLayout = new LinearLayout(mContext); in QSScrollLayout() local53 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()
326 LinearLayout linearLayout = (LinearLayout) group; in swapChildrenIfRtlAndVertical() local327 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()
R.java package com.android.layoutlib.test.myapplication public final com.android. ...
125 public DarkIconManager(LinearLayout linearLayout, FeatureFlags featureFlags) { in DarkIconManager() argument126 super(linearLayout, featureFlags); in DarkIconManager()
3331 LinearLayout linearLayout = new LinearLayout(mTextView.getContext()); in initContentView() local3332 linearLayout.setOrientation(LinearLayout.HORIZONTAL); in initContentView()3333 mContentView = linearLayout; in initContentView()