Home
last modified time | relevance | path

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

/aosp12/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()
/aosp12/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DAdvancedBluetoothDetailsHeaderController.java254 if (linearLayout == null) { in updateSubLayout()
259 final ImageView imageView = linearLayout.findViewById(R.id.header_icon); in updateSubLayout()
281 linearLayout.setVisibility(View.VISIBLE); in updateSubLayout()
297 linearLayout.setVisibility(View.VISIBLE); in updateSubLayout()
310 linearLayout.setVisibility(View.GONE); in updateSubLayout()
316 final TextView textView = linearLayout.findViewById(R.id.header_title); in updateSubLayout()
369 linearLayout); in showBatteryPredictionIfNecessary()
379 LinearLayout linearLayout) { in showBatteryPredictionIfNecessary() argument
425 linearLayout.setVisibility(View.VISIBLE); in updateDisconnectLayout()
426 linearLayout.findViewById(R.id.header_title).setVisibility(View.GONE); in updateDisconnectLayout()
[all …]
/aosp12/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()
/aosp12/packages/services/Mtp/tests/src/com/android/mtp/
H A 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()
/aosp12/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()
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
H A DAdvancedBluetoothDetailsHeaderControllerTest.java440 private void assertBatteryPredictionVisible(LinearLayout linearLayout, int visible) { in assertBatteryPredictionVisible() argument
441 final TextView textView = linearLayout.findViewById(R.id.bt_battery_prediction); in assertBatteryPredictionVisible()
445 private void assertBatteryPrediction(LinearLayout linearLayout, String prediction) { in assertBatteryPrediction() argument
446 final TextView textView = linearLayout.findViewById(R.id.bt_battery_prediction); in assertBatteryPrediction()
450 private void assertBatteryLevel(LinearLayout linearLayout, int batteryLevel) { in assertBatteryLevel() argument
451 final TextView textView = linearLayout.findViewById(R.id.bt_battery_summary); in assertBatteryLevel()
456 private void assertBatteryIcon(LinearLayout linearLayout, int resId) { in assertBatteryIcon() argument
457 final ImageView imageView = linearLayout.findViewById(R.id.bt_battery_icon); in assertBatteryIcon()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DScreenPinningRequest.java328 LinearLayout linearLayout = (LinearLayout) group; in swapChildrenIfRtlAndVertical() local
329 if (linearLayout.getOrientation() == LinearLayout.VERTICAL) { in swapChildrenIfRtlAndVertical()
330 int childCount = linearLayout.getChildCount(); in swapChildrenIfRtlAndVertical()
333 childList.add(linearLayout.getChildAt(i)); in swapChildrenIfRtlAndVertical()
335 linearLayout.removeAllViews(); in swapChildrenIfRtlAndVertical()
337 linearLayout.addView(childList.get(i)); in swapChildrenIfRtlAndVertical()
/aosp12/frameworks/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/android/layoutlib/test/myapplication/
H A DR$id.classR.java package com.android.layoutlib.test.myapplication public final com.android. ...
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarIconController.java128 public DarkIconManager(LinearLayout linearLayout, FeatureFlags featureFlags) { in DarkIconManager() argument
129 super(linearLayout, featureFlags); in DarkIconManager()
/aosp12/frameworks/base/core/java/android/widget/
H A DEditor.java3331 LinearLayout linearLayout = new LinearLayout(mTextView.getContext()); in initContentView() local
3332 linearLayout.setOrientation(LinearLayout.HORIZONTAL); in initContentView()
3333 mContentView = linearLayout; in initContentView()