Home
last modified time | relevance | path

Searched refs:newBg (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/view/
DDrawableBgMinSize.java72 private void changeBackgrounds(Drawable newBg) { in changeBackgrounds() argument
73 mTextView.setBackgroundDrawable(newBg); in changeBackgrounds()
74 mLinearLayout.setBackgroundDrawable(newBg); in changeBackgrounds()
75 mRelativeLayout.setBackgroundDrawable(newBg); in changeBackgrounds()
76 mFrameLayout.setBackgroundDrawable(newBg); in changeBackgrounds()
77 mAbsoluteLayout.setBackgroundDrawable(newBg); in changeBackgrounds()
/frameworks/libs/systemui/weathereffects/src/com/google/android/wallpaper/weathereffects/data/repository/
DWeatherEffectsRepository.kt52 WallpaperFileUtils.importBitmapFromAbsolutePath(it)?.let { newBg -> in <lambda>() method
53 bgBitmap = newBg in <lambda>()
/frameworks/base/core/java/android/widget/
DProgressBar.java620 AnimationDrawable newBg = new AnimationDrawable(); in tileifyIndeterminate() local
621 newBg.setOneShot(background.isOneShot()); in tileifyIndeterminate()
626 newBg.addFrame(frame, background.getDuration(i)); in tileifyIndeterminate()
628 newBg.setLevel(10000); in tileifyIndeterminate()
629 drawable = newBg; in tileifyIndeterminate()