Loading src/com/android/customization/module/ThemePickerInjector.kt +2 −1 Original line number Diff line number Diff line Loading @@ -43,6 +43,7 @@ import com.android.customization.picker.clock.data.repository.ClockRegistryProvi import com.android.customization.picker.clock.domain.interactor.ClockPickerInteractor import com.android.customization.picker.clock.domain.interactor.ClockPickerSnapshotRestorer import com.android.customization.picker.clock.ui.view.ClockViewFactory import com.android.customization.picker.clock.ui.view.ClockViewFactoryImpl import com.android.customization.picker.clock.ui.viewmodel.ClockCarouselViewModel import com.android.customization.picker.clock.ui.viewmodel.ClockSectionViewModel import com.android.customization.picker.clock.ui.viewmodel.ClockSettingsViewModel Loading Loading @@ -373,7 +374,7 @@ internal constructor( override fun getClockViewFactory(activity: ComponentActivity): ClockViewFactory { val activityHashCode = activity.hashCode() return clockViewFactories[activityHashCode] ?: ClockViewFactory( ?: ClockViewFactoryImpl( activity.applicationContext, ScreenSizeCalculator.getInstance() .getScreenSize(activity.windowManager.defaultDisplay), Loading src/com/android/customization/picker/clock/ui/view/ClockViewFactory.kt +11 −199 Original line number Diff line number Diff line Loading @@ -15,226 +15,38 @@ */ package com.android.customization.picker.clock.ui.view import android.app.WallpaperColors import android.app.WallpaperManager import android.content.Context import android.content.res.Resources import android.graphics.Point import android.graphics.Rect import android.view.View import android.widget.FrameLayout import androidx.annotation.ColorInt import androidx.core.text.util.LocalePreferences import androidx.lifecycle.LifecycleOwner import com.android.systemui.plugins.ClockController import com.android.systemui.plugins.WeatherData import com.android.systemui.shared.clocks.ClockRegistry import com.android.wallpaper.R import com.android.wallpaper.util.TimeUtils.TimeTicker import java.util.concurrent.ConcurrentHashMap /** * Provide reusable clock view and related util functions. * * @property screenSize The Activity or Fragment's window size. */ class ClockViewFactory( private val appContext: Context, val screenSize: Point, private val wallpaperManager: WallpaperManager, private val registry: ClockRegistry, ) { private val resources = appContext.resources private val timeTickListeners: ConcurrentHashMap<Int, TimeTicker> = ConcurrentHashMap() private val clockControllers: HashMap<String, ClockController> = HashMap() private val smallClockFrames: HashMap<String, FrameLayout> = HashMap() interface ClockViewFactory { fun getController(clockId: String): ClockController { return clockControllers[clockId] ?: initClockController(clockId).also { clockControllers[clockId] = it } } fun getController(clockId: String): ClockController /** * Reset the large view to its initial state when getting the view. This is because some view * configs, e.g. animation state, might change during the reuse of the clock view in the app. */ fun getLargeView(clockId: String): View { return getController(clockId).largeClock.let { it.animations.onPickerCarouselSwiping(1F) it.view } } fun getLargeView(clockId: String): View /** * Reset the small view to its initial state when getting the view. This is because some view * configs, e.g. translation X, might change during the reuse of the clock view in the app. */ fun getSmallView(clockId: String): View { val smallClockFrame = smallClockFrames[clockId] ?: createSmallClockFrame().also { it.addView(getController(clockId).smallClock.view) smallClockFrames[clockId] = it } smallClockFrame.translationX = 0F smallClockFrame.translationY = 0F return smallClockFrame } private fun createSmallClockFrame(): FrameLayout { val smallClockFrame = FrameLayout(appContext) val layoutParams = FrameLayout.LayoutParams( FrameLayout.LayoutParams.WRAP_CONTENT, resources.getDimensionPixelSize(R.dimen.small_clock_height) ) layoutParams.topMargin = getSmallClockTopMargin() layoutParams.marginStart = getSmallClockStartPadding() smallClockFrame.layoutParams = layoutParams smallClockFrame.clipChildren = false return smallClockFrame } private fun getSmallClockTopMargin() = getStatusBarHeight(appContext.resources) + appContext.resources.getDimensionPixelSize(R.dimen.small_clock_padding_top) private fun getSmallClockStartPadding() = appContext.resources.getDimensionPixelSize(R.dimen.clock_padding_start) fun updateColorForAllClocks(@ColorInt seedColor: Int?) { clockControllers.values.forEach { it.events.onSeedColorChanged(seedColor = seedColor) } } fun updateColor(clockId: String, @ColorInt seedColor: Int?) { clockControllers[clockId]?.events?.onSeedColorChanged(seedColor) } fun updateRegionDarkness() { val isRegionDark = isLockscreenWallpaperDark() clockControllers.values.forEach { it.largeClock.events.onRegionDarknessChanged(isRegionDark) it.smallClock.events.onRegionDarknessChanged(isRegionDark) } } private fun isLockscreenWallpaperDark(): Boolean { val colors = wallpaperManager.getWallpaperColors(WallpaperManager.FLAG_LOCK) return (colors?.colorHints?.and(WallpaperColors.HINT_SUPPORTS_DARK_TEXT)) == 0 } fun updateTimeFormat(clockId: String) { getController(clockId) .events .onTimeFormatChanged(android.text.format.DateFormat.is24HourFormat(appContext)) } fun getSmallView(clockId: String): View fun registerTimeTicker(owner: LifecycleOwner) { val hashCode = owner.hashCode() if (timeTickListeners.keys.contains(hashCode)) { return } timeTickListeners[hashCode] = TimeTicker.registerNewReceiver(appContext) { onTimeTick() } } fun onDestroy() { timeTickListeners.forEach { (_, timeTicker) -> appContext.unregisterReceiver(timeTicker) } timeTickListeners.clear() clockControllers.clear() smallClockFrames.clear() } private fun onTimeTick() { clockControllers.values.forEach { it.largeClock.events.onTimeTick() it.smallClock.events.onTimeTick() } } fun updateColorForAllClocks(@ColorInt seedColor: Int?) fun unregisterTimeTicker(owner: LifecycleOwner) { val hashCode = owner.hashCode() timeTickListeners[hashCode]?.let { appContext.unregisterReceiver(it) timeTickListeners.remove(hashCode) } } fun updateColor(clockId: String, @ColorInt seedColor: Int?) private fun initClockController(clockId: String): ClockController { val controller = registry.createExampleClock(clockId).also { it?.initialize(resources, 0f, 0f) } checkNotNull(controller) fun updateRegionDarkness() val isWallpaperDark = isLockscreenWallpaperDark() // Initialize large clock controller.largeClock.events.onRegionDarknessChanged(isWallpaperDark) controller.largeClock.events.onFontSettingChanged( resources.getDimensionPixelSize(R.dimen.large_clock_text_size).toFloat() ) controller.largeClock.events.onTargetRegionChanged(getLargeClockRegion()) fun updateTimeFormat(clockId: String) // Initialize small clock controller.smallClock.events.onRegionDarknessChanged(isWallpaperDark) controller.smallClock.events.onFontSettingChanged( resources.getDimensionPixelSize(R.dimen.small_clock_text_size).toFloat() ) controller.smallClock.events.onTargetRegionChanged(getSmallClockRegion()) fun registerTimeTicker(owner: LifecycleOwner) // Use placeholder for weather clock preview in picker. // Use locale default temp unit since assistant default is not available in this context. val useCelsius = LocalePreferences.getTemperatureUnit() == LocalePreferences.TemperatureUnit.CELSIUS controller.events.onWeatherDataChanged( WeatherData( description = DESCRIPTION_PLACEHODLER, state = WEATHERICON_PLACEHOLDER, temperature = if (useCelsius) TEMPERATURE_CELSIUS_PLACEHOLDER else TEMPERATURE_FAHRENHEIT_PLACEHOLDER, useCelsius = useCelsius, ) ) return controller } fun onDestroy() /** * Simulate the function of getLargeClockRegion in KeyguardClockSwitch so that we can get a * proper region corresponding to lock screen in picker and for onTargetRegionChanged to scale * and position the clock view */ private fun getLargeClockRegion(): Rect { val largeClockTopMargin = resources.getDimensionPixelSize(R.dimen.keyguard_large_clock_top_margin) val targetHeight = resources.getDimensionPixelSize(R.dimen.large_clock_text_size) * 2 val top = (screenSize.y / 2 - targetHeight / 2 + largeClockTopMargin / 2) return Rect(0, top, screenSize.x, (top + targetHeight)) } /** * Simulate the function of getSmallClockRegion in KeyguardClockSwitch so that we can get a * proper region corresponding to lock screen in picker and for onTargetRegionChanged to scale * and position the clock view */ private fun getSmallClockRegion(): Rect { val topMargin = getSmallClockTopMargin() val targetHeight = resources.getDimensionPixelSize(R.dimen.small_clock_height) return Rect(getSmallClockStartPadding(), topMargin, screenSize.x, topMargin + targetHeight) } companion object { const val DESCRIPTION_PLACEHODLER = "" const val TEMPERATURE_FAHRENHEIT_PLACEHOLDER = 58 const val TEMPERATURE_CELSIUS_PLACEHOLDER = 21 val WEATHERICON_PLACEHOLDER = WeatherData.WeatherStateIcon.MOSTLY_SUNNY const val USE_CELSIUS_PLACEHODLER = false private fun getStatusBarHeight(resource: Resources): Int { var result = 0 val resourceId: Int = resource.getIdentifier("status_bar_height", "dimen", "android") if (resourceId > 0) { result = resource.getDimensionPixelSize(resourceId) } return result } } fun unregisterTimeTicker(owner: LifecycleOwner) } src/com/android/customization/picker/clock/ui/view/ClockViewFactoryImpl.kt 0 → 100644 +240 −0 Original line number Diff line number Diff line /* * Copyright (C) 2023 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.customization.picker.clock.ui.view import android.app.WallpaperColors import android.app.WallpaperManager import android.content.Context import android.content.res.Resources import android.graphics.Point import android.graphics.Rect import android.view.View import android.widget.FrameLayout import androidx.annotation.ColorInt import androidx.core.text.util.LocalePreferences import androidx.lifecycle.LifecycleOwner import com.android.systemui.plugins.ClockController import com.android.systemui.plugins.WeatherData import com.android.systemui.shared.clocks.ClockRegistry import com.android.wallpaper.R import com.android.wallpaper.util.TimeUtils.TimeTicker import java.util.concurrent.ConcurrentHashMap /** * Provide reusable clock view and related util functions. * * @property screenSize The Activity or Fragment's window size. */ class ClockViewFactoryImpl( private val appContext: Context, val screenSize: Point, private val wallpaperManager: WallpaperManager, private val registry: ClockRegistry, ) : ClockViewFactory { private val resources = appContext.resources private val timeTickListeners: ConcurrentHashMap<Int, TimeTicker> = ConcurrentHashMap() private val clockControllers: HashMap<String, ClockController> = HashMap() private val smallClockFrames: HashMap<String, FrameLayout> = HashMap() override fun getController(clockId: String): ClockController { return clockControllers[clockId] ?: initClockController(clockId).also { clockControllers[clockId] = it } } /** * Reset the large view to its initial state when getting the view. This is because some view * configs, e.g. animation state, might change during the reuse of the clock view in the app. */ override fun getLargeView(clockId: String): View { return getController(clockId).largeClock.let { it.animations.onPickerCarouselSwiping(1F) it.view } } /** * Reset the small view to its initial state when getting the view. This is because some view * configs, e.g. translation X, might change during the reuse of the clock view in the app. */ override fun getSmallView(clockId: String): View { val smallClockFrame = smallClockFrames[clockId] ?: createSmallClockFrame().also { it.addView(getController(clockId).smallClock.view) smallClockFrames[clockId] = it } smallClockFrame.translationX = 0F smallClockFrame.translationY = 0F return smallClockFrame } private fun createSmallClockFrame(): FrameLayout { val smallClockFrame = FrameLayout(appContext) val layoutParams = FrameLayout.LayoutParams( FrameLayout.LayoutParams.WRAP_CONTENT, resources.getDimensionPixelSize(R.dimen.small_clock_height) ) layoutParams.topMargin = getSmallClockTopMargin() layoutParams.marginStart = getSmallClockStartPadding() smallClockFrame.layoutParams = layoutParams smallClockFrame.clipChildren = false return smallClockFrame } private fun getSmallClockTopMargin() = getStatusBarHeight(appContext.resources) + appContext.resources.getDimensionPixelSize(R.dimen.small_clock_padding_top) private fun getSmallClockStartPadding() = appContext.resources.getDimensionPixelSize(R.dimen.clock_padding_start) override fun updateColorForAllClocks(@ColorInt seedColor: Int?) { clockControllers.values.forEach { it.events.onSeedColorChanged(seedColor = seedColor) } } override fun updateColor(clockId: String, @ColorInt seedColor: Int?) { clockControllers[clockId]?.events?.onSeedColorChanged(seedColor) } override fun updateRegionDarkness() { val isRegionDark = isLockscreenWallpaperDark() clockControllers.values.forEach { it.largeClock.events.onRegionDarknessChanged(isRegionDark) it.smallClock.events.onRegionDarknessChanged(isRegionDark) } } private fun isLockscreenWallpaperDark(): Boolean { val colors = wallpaperManager.getWallpaperColors(WallpaperManager.FLAG_LOCK) return (colors?.colorHints?.and(WallpaperColors.HINT_SUPPORTS_DARK_TEXT)) == 0 } override fun updateTimeFormat(clockId: String) { getController(clockId) .events .onTimeFormatChanged(android.text.format.DateFormat.is24HourFormat(appContext)) } override fun registerTimeTicker(owner: LifecycleOwner) { val hashCode = owner.hashCode() if (timeTickListeners.keys.contains(hashCode)) { return } timeTickListeners[hashCode] = TimeTicker.registerNewReceiver(appContext) { onTimeTick() } } override fun onDestroy() { timeTickListeners.forEach { (_, timeTicker) -> appContext.unregisterReceiver(timeTicker) } timeTickListeners.clear() clockControllers.clear() smallClockFrames.clear() } private fun onTimeTick() { clockControllers.values.forEach { it.largeClock.events.onTimeTick() it.smallClock.events.onTimeTick() } } override fun unregisterTimeTicker(owner: LifecycleOwner) { val hashCode = owner.hashCode() timeTickListeners[hashCode]?.let { appContext.unregisterReceiver(it) timeTickListeners.remove(hashCode) } } private fun initClockController(clockId: String): ClockController { val controller = registry.createExampleClock(clockId).also { it?.initialize(resources, 0f, 0f) } checkNotNull(controller) val isWallpaperDark = isLockscreenWallpaperDark() // Initialize large clock controller.largeClock.events.onRegionDarknessChanged(isWallpaperDark) controller.largeClock.events.onFontSettingChanged( resources.getDimensionPixelSize(R.dimen.large_clock_text_size).toFloat() ) controller.largeClock.events.onTargetRegionChanged(getLargeClockRegion()) // Initialize small clock controller.smallClock.events.onRegionDarknessChanged(isWallpaperDark) controller.smallClock.events.onFontSettingChanged( resources.getDimensionPixelSize(R.dimen.small_clock_text_size).toFloat() ) controller.smallClock.events.onTargetRegionChanged(getSmallClockRegion()) // Use placeholder for weather clock preview in picker. // Use locale default temp unit since assistant default is not available in this context. val useCelsius = LocalePreferences.getTemperatureUnit() == LocalePreferences.TemperatureUnit.CELSIUS controller.events.onWeatherDataChanged( WeatherData( description = DESCRIPTION_PLACEHODLER, state = WEATHERICON_PLACEHOLDER, temperature = if (useCelsius) TEMPERATURE_CELSIUS_PLACEHOLDER else TEMPERATURE_FAHRENHEIT_PLACEHOLDER, useCelsius = useCelsius, ) ) return controller } /** * Simulate the function of getLargeClockRegion in KeyguardClockSwitch so that we can get a * proper region corresponding to lock screen in picker and for onTargetRegionChanged to scale * and position the clock view */ private fun getLargeClockRegion(): Rect { val largeClockTopMargin = resources.getDimensionPixelSize(R.dimen.keyguard_large_clock_top_margin) val targetHeight = resources.getDimensionPixelSize(R.dimen.large_clock_text_size) * 2 val top = (screenSize.y / 2 - targetHeight / 2 + largeClockTopMargin / 2) return Rect(0, top, screenSize.x, (top + targetHeight)) } /** * Simulate the function of getSmallClockRegion in KeyguardClockSwitch so that we can get a * proper region corresponding to lock screen in picker and for onTargetRegionChanged to scale * and position the clock view */ private fun getSmallClockRegion(): Rect { val topMargin = getSmallClockTopMargin() val targetHeight = resources.getDimensionPixelSize(R.dimen.small_clock_height) return Rect(getSmallClockStartPadding(), topMargin, screenSize.x, topMargin + targetHeight) } companion object { const val DESCRIPTION_PLACEHODLER = "" const val TEMPERATURE_FAHRENHEIT_PLACEHOLDER = 58 const val TEMPERATURE_CELSIUS_PLACEHOLDER = 21 val WEATHERICON_PLACEHOLDER = WeatherData.WeatherStateIcon.MOSTLY_SUNNY const val USE_CELSIUS_PLACEHODLER = false private fun getStatusBarHeight(resource: Resources): Int { var result = 0 val resourceId: Int = resource.getIdentifier("status_bar_height", "dimen", "android") if (resourceId > 0) { result = resource.getDimensionPixelSize(resourceId) } return result } } } tests/robotests/src/com/android/customization/picker/clock/ui/FakeClockViewFactory.kt 0 → 100644 +52 −0 Original line number Diff line number Diff line package com.android.customization.picker.clock.ui import android.view.View import androidx.lifecycle.LifecycleOwner import com.android.customization.picker.clock.ui.view.ClockViewFactory import com.android.systemui.plugins.ClockController /** * This is a fake [ClockViewFactory]. Only implement the function if it's actually called in a test. */ class FakeClockViewFactory : ClockViewFactory { override fun getController(clockId: String): ClockController { TODO("Not yet implemented") } override fun getLargeView(clockId: String): View { TODO("Not yet implemented") } override fun getSmallView(clockId: String): View { TODO("Not yet implemented") } override fun updateColorForAllClocks(seedColor: Int?) { TODO("Not yet implemented") } override fun updateColor(clockId: String, seedColor: Int?) { TODO("Not yet implemented") } override fun updateRegionDarkness() { TODO("Not yet implemented") } override fun updateTimeFormat(clockId: String) { TODO("Not yet implemented") } override fun registerTimeTicker(owner: LifecycleOwner) { TODO("Not yet implemented") } override fun onDestroy() { TODO("Not yet implemented") } override fun unregisterTimeTicker(owner: LifecycleOwner) { TODO("Not yet implemented") } } Loading
src/com/android/customization/module/ThemePickerInjector.kt +2 −1 Original line number Diff line number Diff line Loading @@ -43,6 +43,7 @@ import com.android.customization.picker.clock.data.repository.ClockRegistryProvi import com.android.customization.picker.clock.domain.interactor.ClockPickerInteractor import com.android.customization.picker.clock.domain.interactor.ClockPickerSnapshotRestorer import com.android.customization.picker.clock.ui.view.ClockViewFactory import com.android.customization.picker.clock.ui.view.ClockViewFactoryImpl import com.android.customization.picker.clock.ui.viewmodel.ClockCarouselViewModel import com.android.customization.picker.clock.ui.viewmodel.ClockSectionViewModel import com.android.customization.picker.clock.ui.viewmodel.ClockSettingsViewModel Loading Loading @@ -373,7 +374,7 @@ internal constructor( override fun getClockViewFactory(activity: ComponentActivity): ClockViewFactory { val activityHashCode = activity.hashCode() return clockViewFactories[activityHashCode] ?: ClockViewFactory( ?: ClockViewFactoryImpl( activity.applicationContext, ScreenSizeCalculator.getInstance() .getScreenSize(activity.windowManager.defaultDisplay), Loading
src/com/android/customization/picker/clock/ui/view/ClockViewFactory.kt +11 −199 Original line number Diff line number Diff line Loading @@ -15,226 +15,38 @@ */ package com.android.customization.picker.clock.ui.view import android.app.WallpaperColors import android.app.WallpaperManager import android.content.Context import android.content.res.Resources import android.graphics.Point import android.graphics.Rect import android.view.View import android.widget.FrameLayout import androidx.annotation.ColorInt import androidx.core.text.util.LocalePreferences import androidx.lifecycle.LifecycleOwner import com.android.systemui.plugins.ClockController import com.android.systemui.plugins.WeatherData import com.android.systemui.shared.clocks.ClockRegistry import com.android.wallpaper.R import com.android.wallpaper.util.TimeUtils.TimeTicker import java.util.concurrent.ConcurrentHashMap /** * Provide reusable clock view and related util functions. * * @property screenSize The Activity or Fragment's window size. */ class ClockViewFactory( private val appContext: Context, val screenSize: Point, private val wallpaperManager: WallpaperManager, private val registry: ClockRegistry, ) { private val resources = appContext.resources private val timeTickListeners: ConcurrentHashMap<Int, TimeTicker> = ConcurrentHashMap() private val clockControllers: HashMap<String, ClockController> = HashMap() private val smallClockFrames: HashMap<String, FrameLayout> = HashMap() interface ClockViewFactory { fun getController(clockId: String): ClockController { return clockControllers[clockId] ?: initClockController(clockId).also { clockControllers[clockId] = it } } fun getController(clockId: String): ClockController /** * Reset the large view to its initial state when getting the view. This is because some view * configs, e.g. animation state, might change during the reuse of the clock view in the app. */ fun getLargeView(clockId: String): View { return getController(clockId).largeClock.let { it.animations.onPickerCarouselSwiping(1F) it.view } } fun getLargeView(clockId: String): View /** * Reset the small view to its initial state when getting the view. This is because some view * configs, e.g. translation X, might change during the reuse of the clock view in the app. */ fun getSmallView(clockId: String): View { val smallClockFrame = smallClockFrames[clockId] ?: createSmallClockFrame().also { it.addView(getController(clockId).smallClock.view) smallClockFrames[clockId] = it } smallClockFrame.translationX = 0F smallClockFrame.translationY = 0F return smallClockFrame } private fun createSmallClockFrame(): FrameLayout { val smallClockFrame = FrameLayout(appContext) val layoutParams = FrameLayout.LayoutParams( FrameLayout.LayoutParams.WRAP_CONTENT, resources.getDimensionPixelSize(R.dimen.small_clock_height) ) layoutParams.topMargin = getSmallClockTopMargin() layoutParams.marginStart = getSmallClockStartPadding() smallClockFrame.layoutParams = layoutParams smallClockFrame.clipChildren = false return smallClockFrame } private fun getSmallClockTopMargin() = getStatusBarHeight(appContext.resources) + appContext.resources.getDimensionPixelSize(R.dimen.small_clock_padding_top) private fun getSmallClockStartPadding() = appContext.resources.getDimensionPixelSize(R.dimen.clock_padding_start) fun updateColorForAllClocks(@ColorInt seedColor: Int?) { clockControllers.values.forEach { it.events.onSeedColorChanged(seedColor = seedColor) } } fun updateColor(clockId: String, @ColorInt seedColor: Int?) { clockControllers[clockId]?.events?.onSeedColorChanged(seedColor) } fun updateRegionDarkness() { val isRegionDark = isLockscreenWallpaperDark() clockControllers.values.forEach { it.largeClock.events.onRegionDarknessChanged(isRegionDark) it.smallClock.events.onRegionDarknessChanged(isRegionDark) } } private fun isLockscreenWallpaperDark(): Boolean { val colors = wallpaperManager.getWallpaperColors(WallpaperManager.FLAG_LOCK) return (colors?.colorHints?.and(WallpaperColors.HINT_SUPPORTS_DARK_TEXT)) == 0 } fun updateTimeFormat(clockId: String) { getController(clockId) .events .onTimeFormatChanged(android.text.format.DateFormat.is24HourFormat(appContext)) } fun getSmallView(clockId: String): View fun registerTimeTicker(owner: LifecycleOwner) { val hashCode = owner.hashCode() if (timeTickListeners.keys.contains(hashCode)) { return } timeTickListeners[hashCode] = TimeTicker.registerNewReceiver(appContext) { onTimeTick() } } fun onDestroy() { timeTickListeners.forEach { (_, timeTicker) -> appContext.unregisterReceiver(timeTicker) } timeTickListeners.clear() clockControllers.clear() smallClockFrames.clear() } private fun onTimeTick() { clockControllers.values.forEach { it.largeClock.events.onTimeTick() it.smallClock.events.onTimeTick() } } fun updateColorForAllClocks(@ColorInt seedColor: Int?) fun unregisterTimeTicker(owner: LifecycleOwner) { val hashCode = owner.hashCode() timeTickListeners[hashCode]?.let { appContext.unregisterReceiver(it) timeTickListeners.remove(hashCode) } } fun updateColor(clockId: String, @ColorInt seedColor: Int?) private fun initClockController(clockId: String): ClockController { val controller = registry.createExampleClock(clockId).also { it?.initialize(resources, 0f, 0f) } checkNotNull(controller) fun updateRegionDarkness() val isWallpaperDark = isLockscreenWallpaperDark() // Initialize large clock controller.largeClock.events.onRegionDarknessChanged(isWallpaperDark) controller.largeClock.events.onFontSettingChanged( resources.getDimensionPixelSize(R.dimen.large_clock_text_size).toFloat() ) controller.largeClock.events.onTargetRegionChanged(getLargeClockRegion()) fun updateTimeFormat(clockId: String) // Initialize small clock controller.smallClock.events.onRegionDarknessChanged(isWallpaperDark) controller.smallClock.events.onFontSettingChanged( resources.getDimensionPixelSize(R.dimen.small_clock_text_size).toFloat() ) controller.smallClock.events.onTargetRegionChanged(getSmallClockRegion()) fun registerTimeTicker(owner: LifecycleOwner) // Use placeholder for weather clock preview in picker. // Use locale default temp unit since assistant default is not available in this context. val useCelsius = LocalePreferences.getTemperatureUnit() == LocalePreferences.TemperatureUnit.CELSIUS controller.events.onWeatherDataChanged( WeatherData( description = DESCRIPTION_PLACEHODLER, state = WEATHERICON_PLACEHOLDER, temperature = if (useCelsius) TEMPERATURE_CELSIUS_PLACEHOLDER else TEMPERATURE_FAHRENHEIT_PLACEHOLDER, useCelsius = useCelsius, ) ) return controller } fun onDestroy() /** * Simulate the function of getLargeClockRegion in KeyguardClockSwitch so that we can get a * proper region corresponding to lock screen in picker and for onTargetRegionChanged to scale * and position the clock view */ private fun getLargeClockRegion(): Rect { val largeClockTopMargin = resources.getDimensionPixelSize(R.dimen.keyguard_large_clock_top_margin) val targetHeight = resources.getDimensionPixelSize(R.dimen.large_clock_text_size) * 2 val top = (screenSize.y / 2 - targetHeight / 2 + largeClockTopMargin / 2) return Rect(0, top, screenSize.x, (top + targetHeight)) } /** * Simulate the function of getSmallClockRegion in KeyguardClockSwitch so that we can get a * proper region corresponding to lock screen in picker and for onTargetRegionChanged to scale * and position the clock view */ private fun getSmallClockRegion(): Rect { val topMargin = getSmallClockTopMargin() val targetHeight = resources.getDimensionPixelSize(R.dimen.small_clock_height) return Rect(getSmallClockStartPadding(), topMargin, screenSize.x, topMargin + targetHeight) } companion object { const val DESCRIPTION_PLACEHODLER = "" const val TEMPERATURE_FAHRENHEIT_PLACEHOLDER = 58 const val TEMPERATURE_CELSIUS_PLACEHOLDER = 21 val WEATHERICON_PLACEHOLDER = WeatherData.WeatherStateIcon.MOSTLY_SUNNY const val USE_CELSIUS_PLACEHODLER = false private fun getStatusBarHeight(resource: Resources): Int { var result = 0 val resourceId: Int = resource.getIdentifier("status_bar_height", "dimen", "android") if (resourceId > 0) { result = resource.getDimensionPixelSize(resourceId) } return result } } fun unregisterTimeTicker(owner: LifecycleOwner) }
src/com/android/customization/picker/clock/ui/view/ClockViewFactoryImpl.kt 0 → 100644 +240 −0 Original line number Diff line number Diff line /* * Copyright (C) 2023 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.customization.picker.clock.ui.view import android.app.WallpaperColors import android.app.WallpaperManager import android.content.Context import android.content.res.Resources import android.graphics.Point import android.graphics.Rect import android.view.View import android.widget.FrameLayout import androidx.annotation.ColorInt import androidx.core.text.util.LocalePreferences import androidx.lifecycle.LifecycleOwner import com.android.systemui.plugins.ClockController import com.android.systemui.plugins.WeatherData import com.android.systemui.shared.clocks.ClockRegistry import com.android.wallpaper.R import com.android.wallpaper.util.TimeUtils.TimeTicker import java.util.concurrent.ConcurrentHashMap /** * Provide reusable clock view and related util functions. * * @property screenSize The Activity or Fragment's window size. */ class ClockViewFactoryImpl( private val appContext: Context, val screenSize: Point, private val wallpaperManager: WallpaperManager, private val registry: ClockRegistry, ) : ClockViewFactory { private val resources = appContext.resources private val timeTickListeners: ConcurrentHashMap<Int, TimeTicker> = ConcurrentHashMap() private val clockControllers: HashMap<String, ClockController> = HashMap() private val smallClockFrames: HashMap<String, FrameLayout> = HashMap() override fun getController(clockId: String): ClockController { return clockControllers[clockId] ?: initClockController(clockId).also { clockControllers[clockId] = it } } /** * Reset the large view to its initial state when getting the view. This is because some view * configs, e.g. animation state, might change during the reuse of the clock view in the app. */ override fun getLargeView(clockId: String): View { return getController(clockId).largeClock.let { it.animations.onPickerCarouselSwiping(1F) it.view } } /** * Reset the small view to its initial state when getting the view. This is because some view * configs, e.g. translation X, might change during the reuse of the clock view in the app. */ override fun getSmallView(clockId: String): View { val smallClockFrame = smallClockFrames[clockId] ?: createSmallClockFrame().also { it.addView(getController(clockId).smallClock.view) smallClockFrames[clockId] = it } smallClockFrame.translationX = 0F smallClockFrame.translationY = 0F return smallClockFrame } private fun createSmallClockFrame(): FrameLayout { val smallClockFrame = FrameLayout(appContext) val layoutParams = FrameLayout.LayoutParams( FrameLayout.LayoutParams.WRAP_CONTENT, resources.getDimensionPixelSize(R.dimen.small_clock_height) ) layoutParams.topMargin = getSmallClockTopMargin() layoutParams.marginStart = getSmallClockStartPadding() smallClockFrame.layoutParams = layoutParams smallClockFrame.clipChildren = false return smallClockFrame } private fun getSmallClockTopMargin() = getStatusBarHeight(appContext.resources) + appContext.resources.getDimensionPixelSize(R.dimen.small_clock_padding_top) private fun getSmallClockStartPadding() = appContext.resources.getDimensionPixelSize(R.dimen.clock_padding_start) override fun updateColorForAllClocks(@ColorInt seedColor: Int?) { clockControllers.values.forEach { it.events.onSeedColorChanged(seedColor = seedColor) } } override fun updateColor(clockId: String, @ColorInt seedColor: Int?) { clockControllers[clockId]?.events?.onSeedColorChanged(seedColor) } override fun updateRegionDarkness() { val isRegionDark = isLockscreenWallpaperDark() clockControllers.values.forEach { it.largeClock.events.onRegionDarknessChanged(isRegionDark) it.smallClock.events.onRegionDarknessChanged(isRegionDark) } } private fun isLockscreenWallpaperDark(): Boolean { val colors = wallpaperManager.getWallpaperColors(WallpaperManager.FLAG_LOCK) return (colors?.colorHints?.and(WallpaperColors.HINT_SUPPORTS_DARK_TEXT)) == 0 } override fun updateTimeFormat(clockId: String) { getController(clockId) .events .onTimeFormatChanged(android.text.format.DateFormat.is24HourFormat(appContext)) } override fun registerTimeTicker(owner: LifecycleOwner) { val hashCode = owner.hashCode() if (timeTickListeners.keys.contains(hashCode)) { return } timeTickListeners[hashCode] = TimeTicker.registerNewReceiver(appContext) { onTimeTick() } } override fun onDestroy() { timeTickListeners.forEach { (_, timeTicker) -> appContext.unregisterReceiver(timeTicker) } timeTickListeners.clear() clockControllers.clear() smallClockFrames.clear() } private fun onTimeTick() { clockControllers.values.forEach { it.largeClock.events.onTimeTick() it.smallClock.events.onTimeTick() } } override fun unregisterTimeTicker(owner: LifecycleOwner) { val hashCode = owner.hashCode() timeTickListeners[hashCode]?.let { appContext.unregisterReceiver(it) timeTickListeners.remove(hashCode) } } private fun initClockController(clockId: String): ClockController { val controller = registry.createExampleClock(clockId).also { it?.initialize(resources, 0f, 0f) } checkNotNull(controller) val isWallpaperDark = isLockscreenWallpaperDark() // Initialize large clock controller.largeClock.events.onRegionDarknessChanged(isWallpaperDark) controller.largeClock.events.onFontSettingChanged( resources.getDimensionPixelSize(R.dimen.large_clock_text_size).toFloat() ) controller.largeClock.events.onTargetRegionChanged(getLargeClockRegion()) // Initialize small clock controller.smallClock.events.onRegionDarknessChanged(isWallpaperDark) controller.smallClock.events.onFontSettingChanged( resources.getDimensionPixelSize(R.dimen.small_clock_text_size).toFloat() ) controller.smallClock.events.onTargetRegionChanged(getSmallClockRegion()) // Use placeholder for weather clock preview in picker. // Use locale default temp unit since assistant default is not available in this context. val useCelsius = LocalePreferences.getTemperatureUnit() == LocalePreferences.TemperatureUnit.CELSIUS controller.events.onWeatherDataChanged( WeatherData( description = DESCRIPTION_PLACEHODLER, state = WEATHERICON_PLACEHOLDER, temperature = if (useCelsius) TEMPERATURE_CELSIUS_PLACEHOLDER else TEMPERATURE_FAHRENHEIT_PLACEHOLDER, useCelsius = useCelsius, ) ) return controller } /** * Simulate the function of getLargeClockRegion in KeyguardClockSwitch so that we can get a * proper region corresponding to lock screen in picker and for onTargetRegionChanged to scale * and position the clock view */ private fun getLargeClockRegion(): Rect { val largeClockTopMargin = resources.getDimensionPixelSize(R.dimen.keyguard_large_clock_top_margin) val targetHeight = resources.getDimensionPixelSize(R.dimen.large_clock_text_size) * 2 val top = (screenSize.y / 2 - targetHeight / 2 + largeClockTopMargin / 2) return Rect(0, top, screenSize.x, (top + targetHeight)) } /** * Simulate the function of getSmallClockRegion in KeyguardClockSwitch so that we can get a * proper region corresponding to lock screen in picker and for onTargetRegionChanged to scale * and position the clock view */ private fun getSmallClockRegion(): Rect { val topMargin = getSmallClockTopMargin() val targetHeight = resources.getDimensionPixelSize(R.dimen.small_clock_height) return Rect(getSmallClockStartPadding(), topMargin, screenSize.x, topMargin + targetHeight) } companion object { const val DESCRIPTION_PLACEHODLER = "" const val TEMPERATURE_FAHRENHEIT_PLACEHOLDER = 58 const val TEMPERATURE_CELSIUS_PLACEHOLDER = 21 val WEATHERICON_PLACEHOLDER = WeatherData.WeatherStateIcon.MOSTLY_SUNNY const val USE_CELSIUS_PLACEHODLER = false private fun getStatusBarHeight(resource: Resources): Int { var result = 0 val resourceId: Int = resource.getIdentifier("status_bar_height", "dimen", "android") if (resourceId > 0) { result = resource.getDimensionPixelSize(resourceId) } return result } } }
tests/robotests/src/com/android/customization/picker/clock/ui/FakeClockViewFactory.kt 0 → 100644 +52 −0 Original line number Diff line number Diff line package com.android.customization.picker.clock.ui import android.view.View import androidx.lifecycle.LifecycleOwner import com.android.customization.picker.clock.ui.view.ClockViewFactory import com.android.systemui.plugins.ClockController /** * This is a fake [ClockViewFactory]. Only implement the function if it's actually called in a test. */ class FakeClockViewFactory : ClockViewFactory { override fun getController(clockId: String): ClockController { TODO("Not yet implemented") } override fun getLargeView(clockId: String): View { TODO("Not yet implemented") } override fun getSmallView(clockId: String): View { TODO("Not yet implemented") } override fun updateColorForAllClocks(seedColor: Int?) { TODO("Not yet implemented") } override fun updateColor(clockId: String, seedColor: Int?) { TODO("Not yet implemented") } override fun updateRegionDarkness() { TODO("Not yet implemented") } override fun updateTimeFormat(clockId: String) { TODO("Not yet implemented") } override fun registerTimeTicker(owner: LifecycleOwner) { TODO("Not yet implemented") } override fun onDestroy() { TODO("Not yet implemented") } override fun unregisterTimeTicker(owner: LifecycleOwner) { TODO("Not yet implemented") } }