Home
last modified time | relevance | path

Searched refs:frameLayout (Results 1 – 22 of 22) sorted by relevance

/packages/apps/Car/Settings/src/com/android/car/settings/common/
DToggleButtonActionItem.java53 public void bindViewHolder(FrameLayout frameLayout) { in bindViewHolder() argument
55 frameLayout.findViewById(R.id.multi_action_preference_toggle_button); in bindViewHolder()
59 toggleButton = createView(frameLayout.getContext(), frameLayout); in bindViewHolder()
64 frameLayout.addView(toggleButton); in bindViewHolder()
DBaseActionItem.java100 abstract void bindViewHolder(FrameLayout frameLayout); in bindViewHolder() argument
/packages/apps/TV/tuner/tests/unittests/javatests/com/android/tv/tuner/layout/tests/
DScaledLayoutActivity.java33 FrameLayout frameLayout = findViewById(R.id.root_layout); in onCreate() local
34 frameLayout.addView(createScaledLayoutTestcaseLayout()); in onCreate()
35 frameLayout.addView(createScaledLayoutTestcaseBounceY()); in onCreate()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
DImageOnlyEditor.java45 public void createEditor(Context context, FrameLayout frameLayout) { in createEditor() argument
46 super.createEditor(context, frameLayout); in createEditor()
DEditorRedEye.java44 public void createEditor(Context context, FrameLayout frameLayout) { in createEditor() argument
45 super.createEditor(context, frameLayout); in createEditor()
DEditorTinyPlanet.java37 public void createEditor(Context context, FrameLayout frameLayout) { in createEditor() argument
38 super.createEditor(context, frameLayout); in createEditor()
DEditorCurves.java48 public void createEditor(Context context, FrameLayout frameLayout) { in createEditor() argument
49 super.createEditor(context, frameLayout); in createEditor()
DEditorMirror.java44 public void createEditor(Context context, FrameLayout frameLayout) { in createEditor() argument
45 super.createEditor(context, frameLayout); in createEditor()
DEditorStraighten.java48 public void createEditor(Context context, FrameLayout frameLayout) { in createEditor() argument
49 super.createEditor(context, frameLayout); in createEditor()
DEditorRotate.java44 public void createEditor(Context context, FrameLayout frameLayout) { in createEditor() argument
45 super.createEditor(context, frameLayout); in createEditor()
DEditorCrop.java75 public void createEditor(Context context, FrameLayout frameLayout) { in createEditor() argument
76 super.createEditor(context, frameLayout); in createEditor()
DEditorColorBorder.java79 public void createEditor(Context context, FrameLayout frameLayout) { in createEditor() argument
81 super.createEditor(context, frameLayout); in createEditor()
DEditor.java143 public void createEditor(Context context, FrameLayout frameLayout) { in createEditor() argument
145 mFrameLayout = frameLayout; in createEditor()
DParametricEditor.java129 public void createEditor(Context context, FrameLayout frameLayout) { in createEditor() argument
130 super.createEditor(context, frameLayout); in createEditor()
DEditorDraw.java111 public void createEditor(Context context, FrameLayout frameLayout) { in createEditor() argument
113 super.createEditor(context, frameLayout); in createEditor()
/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/main/java/com/android/car/ui/recyclerview/
DCarUiRecyclerViewAdapter.java57 public final FrameLayout frameLayout; field in CarUiRecyclerViewAdapter.NestedRowViewHolder
61 frameLayout = findViewByRefId(view, R.id.nested_recycler_view_layout); in NestedRowViewHolder()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/
DFullScreenAnimation.java428 View frameLayout = mView.findViewById(R.id.screen_preview_layout); in startAnimation() local
432 ObjectAnimator.ofFloat(frameLayout, "scaleX", scale), in startAnimation()
433 ObjectAnimator.ofFloat(frameLayout, "scaleY", scale), in startAnimation()
434 ObjectAnimator.ofFloat(frameLayout, "translationY", offsetY), in startAnimation()
/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/main/java/com/android/car/ui/appstyledview/
DAppStyledRecyclerViewAdapter.java52 FrameLayout frameLayout = holder.mView.findViewById(R.id.car_ui_app_styled_item); in onBindViewHolder() local
53 frameLayout.addView(mContent); in onBindViewHolder()
/packages/apps/Car/Notification/tests/unit/src/com/android/car/notification/
DCarNotificationViewTest.java91 FrameLayout frameLayout = new FrameLayout(mContext); in setup() local
93 .inflate(R.layout.test_car_notification_view_layout, frameLayout); in setup()
94 mCarNotificationView = frameLayout.findViewById(R.id.notification_view); in setup()
/packages/apps/Settings/tests/robotests/src/com/android/settings/homepage/
DSettingsHomepageActivityTest.java73 final FrameLayout frameLayout = activity.findViewById(R.id.main_content); in launch_shouldHaveAnimationForIaFragment() local
75 assertThat(frameLayout.getLayoutTransition()).isNotNull(); in launch_shouldHaveAnimationForIaFragment()
/packages/apps/Launcher3/src_plugins/com/android/systemui/plugins/
DRecentsExtraCard.java41 void setupView(Context context, FrameLayout frameLayout, Activity activity); in setupView() argument
/packages/apps/Car/RotaryController/src/com/android/car/rotary/
DRotaryService.java883 FrameLayout frameLayout = new FrameLayout(getWindowContext()); in addTouchOverlay() local
887 frameLayout.setLayoutParams(frameLayoutParams); in addTouchOverlay()
888 frameLayout.setOnTouchListener((view, event) -> { in addTouchOverlay()
907 windowManager.addView(frameLayout, windowLayoutParams); in addTouchOverlay()