mirror of
				https://github.com/SimpleMobileTools/Simple-Clock.git
				synced 2025-06-05 22:19:17 +02:00 
			
		
		
		
	fix displaying the next alarm on the widget
This commit is contained in:
		| @@ -17,11 +17,6 @@ import com.simplemobiletools.commons.extensions.applyColorFilter | ||||
| import com.simplemobiletools.commons.extensions.getLaunchIntent | ||||
| import com.simplemobiletools.commons.extensions.setText | ||||
| import com.simplemobiletools.commons.extensions.setVisibleIf | ||||
| import kotlinx.coroutines.CoroutineScope | ||||
| import kotlinx.coroutines.cancel | ||||
| import kotlinx.coroutines.Dispatchers | ||||
| import kotlinx.coroutines.launch | ||||
| import kotlinx.coroutines.withContext | ||||
|  | ||||
| class MyDigitalTimeWidgetProvider : AppWidgetProvider() { | ||||
|     override fun onUpdate(context: Context, appWidgetManager: AppWidgetManager, appWidgetIds: IntArray) { | ||||
| @@ -31,24 +26,24 @@ class MyDigitalTimeWidgetProvider : AppWidgetProvider() { | ||||
|  | ||||
|     private fun performUpdate(context: Context) { | ||||
|         val appWidgetManager = AppWidgetManager.getInstance(context) ?: return | ||||
|         context.getClosestEnabledAlarmString { nextAlarm -> | ||||
|             appWidgetManager.getAppWidgetIds(getComponentName(context)).forEach { | ||||
|                 RemoteViews(context.packageName, R.layout.widget_digital).apply { | ||||
|                 updateTexts(context, this) | ||||
|                     updateTexts(context, this, nextAlarm) | ||||
|                     updateColors(context, this) | ||||
|                     setupAppOpenIntent(context, this) | ||||
|                     appWidgetManager.updateAppWidget(it, this) | ||||
|                 } | ||||
|             } | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     private fun updateTexts(context: Context, views: RemoteViews) { | ||||
|         context.getClosestEnabledAlarmString { nextAlarm -> | ||||
|     private fun updateTexts(context: Context, views: RemoteViews, nextAlarm: String) { | ||||
|         views.apply { | ||||
|             setText(R.id.widget_next_alarm, nextAlarm) | ||||
|             setVisibleIf(R.id.widget_alarm_holder, nextAlarm.isNotEmpty()) | ||||
|         } | ||||
|     } | ||||
|     } | ||||
|  | ||||
|     private fun updateColors(context: Context, views: RemoteViews) { | ||||
|         val config = context.config | ||||
|   | ||||
		Reference in New Issue
	
	Block a user