1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-08-31 19:45:27 +02:00

Dashboard: Fix awake sleep color

This commit is contained in:
José Rebelo 2024-08-25 23:02:12 +01:00
parent 42dfb6ad4a
commit a1170e7333
2 changed files with 5 additions and 0 deletions

View File

@ -45,6 +45,7 @@ public abstract class AbstractDashboardWidget extends Fragment {
protected @ColorInt int color_deep_sleep = Color.rgb(0, 84, 163);
protected @ColorInt int color_light_sleep = Color.rgb(7, 158, 243);
protected @ColorInt int color_rem_sleep = Color.rgb(228, 39, 199);
protected @ColorInt int color_awake_sleep = Color.rgb(0xff, 0x86, 0x6e);
protected @ColorInt int color_distance = Color.BLUE;
protected @ColorInt int color_active_time = Color.rgb(170, 0, 255);

View File

@ -267,6 +267,10 @@ public class DashboardTodayWidget extends AbstractDashboardWidget {
paint.setStrokeWidth(barWidth);
paint.setColor(color_deep_sleep);
canvas.drawArc(margin, margin, width - margin, height - margin, start_angle, sweep_angle, false, paint);
} else if (activity.activityKind == ActivityKind.AWAKE_SLEEP) {
paint.setStrokeWidth(barWidth);
paint.setColor(color_awake_sleep);
canvas.drawArc(margin, margin, width - margin, height - margin, start_angle, sweep_angle, false, paint);
} else if (activity.activityKind == ActivityKind.EXERCISE) {
paint.setStrokeWidth(barWidth);
paint.setColor(color_exercise);