/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/animation/ |
H A D | StackAnimationControllerTest.java | 184 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 D | PhysicsAnimationLayoutTestCase.java | 102 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 D | ExpandedAnimationControllerTest.java | 121 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 D | PrivacyDialog.kt | 104 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 D | TemporaryViewDisplayController.kt | 262 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 D | KeyguardUserSwitcherController.java | 282 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 D | KeyguardUserSwitcherListView.java | 139 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 D | PseudoGridView.java | 183 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 D | CursorAdapter.java | 292 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 D | ResourceCursorAdapter.java | 134 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in ResourceCursorAdapter
|
H A D | SuggestionsAdapter.java | 284 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 D | AdapterViewAnimator.java | 553 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 D | DefaultItemAnimator.java | 352 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 D | NotificationContentInflater.java | 586 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 D | UnfoldLightRevealOverlayAnimation.kt | 173 val newView = regex 186 newRoot.setView(newView, params) 212 scrimView = newView
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
H A D | SideFpsController.kt | 131 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 D | KeyguardSecurityContainerController.java | 1045 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 D | LayoutTransition.java | 733 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 D | RingtonePickerActivity.java | 747 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 D | MediaTttSenderCoordinatorTest.kt | 1312 val newView = getChipbarView() regex 1322 assertThat(newView.getChipText())
|
/aosp14/frameworks/base/packages/SystemUI/docs/ |
H A D | physics-animation-layout.md | 89 animationForChild(newView)
|
/aosp14/frameworks/base/core/java/com/android/internal/app/ |
H A D | AlertController.java | 1212 public View newView(Context context, Cursor cursor, ViewGroup parent) { in createListView()
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | ViewRootImpl.java | 1914 public void setLayoutParams(WindowManager.LayoutParams attrs, boolean newView) { 1985 if (newView) {
|
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |
/aosp14/frameworks/base/core/api/ |
H A D | current.txt | 58412 …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.…
|