Home
last modified time | relevance | path

Searched refs:newView (Results 1 – 25 of 25) sorted by relevance

/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/animation/
H A DStackAnimationControllerTest.java184 final View newView = new FrameLayout(mContext); in testChildAdded() local
186 newView, in testChildAdded()
199 assertEquals(0f, newView.getTranslationX(), .1f); in testChildAdded()
200 assertEquals(500f, newView.getTranslationY(), .1f); in testChildAdded()
201 assertEquals(1f, newView.getScaleX(), .1f); in testChildAdded()
202 assertEquals(1f, newView.getScaleY(), .1f); in testChildAdded()
203 assertEquals(1f, newView.getAlpha(), .1f); in testChildAdded()
H A DPhysicsAnimationLayoutTestCase.java102 final View newView = new FrameLayout(mContext); in addOneMoreThanBubbleLimitBubbles() local
103 mLayout.addView(newView, 0); in addOneMoreThanBubbleLimitBubbles()
104 mViews.add(0, newView); in addOneMoreThanBubbleLimitBubbles()
106 newView.setTranslationX(0); in addOneMoreThanBubbleLimitBubbles()
107 newView.setTranslationY(0); in addOneMoreThanBubbleLimitBubbles()
H A DExpandedAnimationControllerTest.java121 final View newView = new FrameLayout(getContext()); in testOnChildAdded() local
122 mLayout.addView(newView, 0); in testOnChildAdded()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/privacy/
H A DPrivacyDialog.kt104 val newView = LayoutInflater.from(context).inflate( regex
109 newView.requireViewById<ImageView>(R.id.icon).apply {
122 newView.requireViewById<TextView>(R.id.text).text = finalText
124 newView.requireViewById<View>(R.id.chevron).visibility = View.GONE
126 newView.apply {
132 return newView
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/temporarydisplay/
H A DTemporaryViewDisplayController.kt262 val newView = LayoutInflater regex
265 displayInfo.view = newView
269 val newViewController = TouchableRegionViewController(newView, this::getTouchableRegion)
272 updateView(newInfo, newView)
278 newView.keepScreenOn = true
279 logger.logViewAddedToWindowManager(displayInfo.info, newView)
280 windowManager.addView(newView, paramsWithTitle)
281 animateViewIn(newView)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcherController.java282 KeyguardUserDetailItemView newView = (KeyguardUserDetailItemView) in refreshUserList() local
285 (UserRecord) newView.getTag(); in refreshUserList()
293 newView.updateVisibilities(true /* showItem */, in refreshUserList()
299 newView.updateVisibilities(mUserSwitcherOpen /* showItem */, in refreshUserList()
302 newView.setDarkAmount(mDarkAmount); in refreshUserList()
305 mListView.addView(newView); in refreshUserList()
306 } else if (oldView != newView) { in refreshUserList()
308 mListView.replaceView(newView, i); in refreshUserList()
H A DKeyguardUserSwitcherListView.java139 void replaceView(KeyguardUserDetailItemView newView, int index) { in replaceView() argument
141 addView(newView, index); in replaceView()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPseudoGridView.java183 View newView = mAdapter.getView(i, oldView, viewGroup); in refresh() local
186 viewGroup.addView(newView); in refresh()
187 } else if (oldView != newView) { in refresh()
190 viewGroup.addView(newView, i); in refresh()
/aosp14/frameworks/base/core/java/android/widget/
H A DCursorAdapter.java292 v = newView(mContext, mCursor, parent); in getView()
326 public abstract View newView(Context context, Cursor cursor, ViewGroup parent); in newView() method in CursorAdapter
337 return newView(context, cursor, parent); in newDropDownView()
H A DResourceCursorAdapter.java134 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in ResourceCursorAdapter
H A DSuggestionsAdapter.java284 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in SuggestionsAdapter
285 final View v = super.newView(context, cursor, parent); in newView()
495 View v = newView(mContext, mCursor, parent); in getView()
H A DAdapterViewAnimator.java553 View newView = mAdapter.getView(adapterPosition, null, this); in showOnly() local
561 if (newView != null) { in showOnly()
562 fl.addView(newView); in showOnly()
/aosp14/frameworks/base/core/java/com/android/internal/widget/
H A DDefaultItemAnimator.java352 final View newView = newHolder != null ? newHolder.itemView : null; in animateChangeImpl() local
377 if (newView != null) { in animateChangeImpl()
378 final ViewPropertyAnimator newViewAnimation = newView.animate(); in animateChangeImpl()
389 newView.setAlpha(1); in animateChangeImpl()
390 newView.setTranslationX(0); in animateChangeImpl()
391 newView.setTranslationY(0); in animateChangeImpl()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationContentInflater.java586 View newView = existingView; in applyRemoteView()
588 newView = newContentView.apply( in applyRemoteView()
600 onViewApplied(newView); in applyRemoteView()
824 static boolean canReapplyRemoteView(final RemoteViews newView, in canReapplyRemoteView() argument
826 return (newView == null && oldView == null) || in canReapplyRemoteView()
827 (newView != null && oldView != null in canReapplyRemoteView()
829 && newView.getPackage() != null in canReapplyRemoteView()
830 && newView.getPackage().equals(oldView.getPackage()) in canReapplyRemoteView()
831 && newView.getLayoutId() == oldView.getLayoutId() in canReapplyRemoteView()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/unfold/
H A DUnfoldLightRevealOverlayAnimation.kt173 val newView = regex
186 newRoot.setView(newView, params)
212 scrimView = newView
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DSideFpsController.kt131 field?.let { newView ->
133 newView.alpha = 0f
135 newView
141 windowManager.addView(newView, overlayViewParams)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardSecurityContainerController.java1045 newView -> { in showSecurityScreen()
1046 newView.onResume(KeyguardSecurityView.VIEW_REVEALED); in showSecurityScreen()
1047 mSecurityViewFlipperController.show(newView); in showSecurityScreen()
1050 securityMode, newView != null && newView.needsInput()); in showSecurityScreen()
/aosp14/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java733 private void runChangeTransition(final ViewGroup parent, View newView, final int changeReason) { in runChangeTransition() argument
778 if (child != newView) { in runChangeTransition()
/aosp14/frameworks/base/packages/SoundPicker/src/com/android/soundpicker/
H A DRingtonePickerActivity.java747 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in RingtonePickerActivity.BadgedRingtoneAdapter
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/taptotransfer/sender/
H A DMediaTttSenderCoordinatorTest.kt1312 val newView = getChipbarView() regex
1322 assertThat(newView.getChipText())
/aosp14/frameworks/base/packages/SystemUI/docs/
H A Dphysics-animation-layout.md89 animationForChild(newView)
/aosp14/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java1212 public View newView(Context context, Cursor cursor, ViewGroup parent) { in createListView()
/aosp14/frameworks/base/core/java/android/view/
H A DViewRootImpl.java1914 public void setLayoutParams(WindowManager.LayoutParams attrs, boolean newView) {
1985 if (newView) {
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...
/aosp14/frameworks/base/core/api/
H A Dcurrent.txt58412 …method public abstract android.view.View newView(android.content.Context, android.database.Cursor,…
59701 …method public android.view.View newView(android.content.Context, android.database.Cursor, android.…