Searched refs:linearLayout (Results 1 – 8 of 8) sorted by relevance
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()
48 final LinearLayout linearLayout = new LinearLayout(this); in onCreate() local49 linearLayout.setOrientation(LinearLayout.VERTICAL); in onCreate()50 setContentView(linearLayout); in onCreate()54 linearLayout.addView( 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()
300 LinearLayout linearLayout = (LinearLayout) group; in swapChildrenIfRtlAndVertical() local301 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()
R.java package com.android.layoutlib.test.myapplication public final com.android. ...
221 LinearLayout linearLayout = (LinearLayout) mList; in rotate() local223 linearLayout.setOrientation(LinearLayout.HORIZONTAL); in rotate()234 LinearLayout linearLayout = (LinearLayout) mList; in rotate() local236 linearLayout.setOrientation(LinearLayout.VERTICAL); in rotate()
99 public DarkIconManager(LinearLayout linearLayout) { in DarkIconManager() argument100 super(linearLayout); in DarkIconManager()
3099 LinearLayout linearLayout = new LinearLayout(mTextView.getContext()); in initContentView() local3100 linearLayout.setOrientation(LinearLayout.HORIZONTAL); in initContentView()3101 mContentView = linearLayout; in initContentView()