Home
last modified time | relevance | path

Searched refs:attachView (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Settings/src/com/android/settings/widget/
DVideoPreference.java128 mAnimationController.attachView(mVideo, mPreviewImage, mPlayButton); in onBindViewHolder()
174 mAnimationController.attachView(mVideo, mPreviewImage, mPlayButton); in initAnimationController()
228 void attachView(TextureView video, View preview, View playButton); in attachView() method
DVectorAnimationController.java85 public void attachView(TextureView video, View preview, View playButton) { in attachView() method in VectorAnimationController
DMediaAnimationController.java84 public void attachView(TextureView video, View preview, View playButton) { in attachView() method in MediaAnimationController
/packages/apps/Settings/tests/robotests/src/com/android/settings/widget/
DVideoPreferenceTest.java102 mAnimationController.attachView(video, fakePreview, fakePlayButton); in onSurfaceTextureUpdated_viewInvisible_shouldNotStartPlayingVideo()
123 mVideoPreference.mAnimationController.attachView(new TextureView(mContext), fakePreview, in updateViewStates_paused_updatesViews()
135 mVideoPreference.mAnimationController.attachView(new TextureView(mContext), fakePreview, in updateViewStates_playing_updatesViews()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/preview/ui/binder/
DSmallWallpaperPreviewBinder.kt33 import com.android.wallpaper.picker.preview.ui.util.SurfaceViewUtil.attachView in <lambda>()
137 surface.attachView(staticPreviewView) in <lambda>()
DFullWallpaperPreviewBinder.kt46 import com.android.wallpaper.picker.preview.ui.util.SurfaceViewUtil.attachView in <lambda>()
364 surfaceView.attachView(preview, width, height) in <lambda>()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/preview/ui/util/
DSurfaceViewUtil.kt27 fun SurfaceView.attachView(view: View, newWidth: Int = width, newHeight: Int = height) { in attachView() method