FORM Clock Widget
An Android live wallpaper based on the FORM watchface by Roman Nurik.
A webapp implementation is available here.
An Android live wallpaper based on the FORM watchface by Roman Nurik.
A webapp implementation is available here.
French translation, thanks to Mickael (M2ck on Github - github/M2ck)!
Automatic day/night theme switching for the settings app and shortcut launcher.
Persistent mode, for those who are having problems with the widget not updating. Please note, this will add a persistent notification to your system notifications
Alarm complication will now show 12 noon correctly when using 12-hour time format.
The number 7 no longer shows overlapping sections when using transparent colors.
Some strange behaviour in list dialogs.
int color1 = Color.RED;
int color2 = Color.BLUE;
int color3 = Color.GREEN;
Intent intent = new Intent();
intent.setAction("com.beatonma.formclockwidget.EXTERNAL_LWP");
Bundle extras = new Bundle();
extras.putString("lwp_package", getPackageName());
extras.putInt("lwp_color1", color1);
extras.putInt("lwp_color2", color2);
extras.putInt("lwp_color3", color3);
intent.putExtras(extras);
sendBroadcast(intent);
val color1 = Color.RED
val color2 = Color.BLUE
val color3 = Color.GREEN
val extras = Bundle().apply {
putString("lwp_package", packageName)
putInt("lwp_color1", color1)
putInt("lwp_color2", color2)
putInt("lwp_color3", color3)
}
val intent = Intent().apply {
setAction("com.beatonma.formclockwidget.EXTERNAL_LWP")
putExtras(extras)
}
sendBroadcast(intent)
This is a bit later than I expected - you go to add one or two little things and suddenly the menu looks all clumsy and you kind of have to redesign everything. Well, at least now there’s plenty of room for new activities…
Tweaks and bug fixes including:
And finally, the APK is smaller.