2015-08-03 23:09:49 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.model;
|
2015-07-14 00:29:32 +02:00
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
|
2015-11-09 23:16:53 +01:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.R;
|
|
|
|
|
2015-07-14 00:29:32 +02:00
|
|
|
public class ActivityAmount {
|
2015-11-23 23:04:46 +01:00
|
|
|
private final int activityKind;
|
2015-07-14 00:29:32 +02:00
|
|
|
private short percent;
|
|
|
|
private long totalSeconds;
|
2017-02-26 00:40:50 +01:00
|
|
|
private long totalSteps;
|
2015-07-14 00:29:32 +02:00
|
|
|
|
|
|
|
public ActivityAmount(int activityKind) {
|
|
|
|
this.activityKind = activityKind;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addSeconds(long seconds) {
|
|
|
|
totalSeconds += seconds;
|
|
|
|
}
|
|
|
|
|
2017-02-26 00:40:50 +01:00
|
|
|
public void addSteps(long steps) {
|
|
|
|
totalSteps += steps;
|
|
|
|
}
|
|
|
|
|
2015-07-14 00:29:32 +02:00
|
|
|
public long getTotalSeconds() {
|
|
|
|
return totalSeconds;
|
|
|
|
}
|
|
|
|
|
2017-02-26 00:40:50 +01:00
|
|
|
public long getTotalSteps() {
|
|
|
|
return totalSteps;
|
|
|
|
}
|
|
|
|
|
2015-07-14 00:29:32 +02:00
|
|
|
public int getActivityKind() {
|
|
|
|
return activityKind;
|
|
|
|
}
|
|
|
|
|
|
|
|
public short getPercent() {
|
|
|
|
return percent;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPercent(short percent) {
|
|
|
|
this.percent = percent;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getName(Context context) {
|
|
|
|
switch (activityKind) {
|
|
|
|
case ActivityKind.TYPE_DEEP_SLEEP:
|
2015-11-09 23:16:53 +01:00
|
|
|
return context.getString(R.string.abstract_chart_fragment_kind_deep_sleep);
|
2015-07-14 00:29:32 +02:00
|
|
|
case ActivityKind.TYPE_LIGHT_SLEEP:
|
2015-11-09 23:16:53 +01:00
|
|
|
return context.getString(R.string.abstract_chart_fragment_kind_light_sleep);
|
2015-07-14 00:29:32 +02:00
|
|
|
}
|
2015-11-09 23:16:53 +01:00
|
|
|
return context.getString(R.string.abstract_chart_fragment_kind_activity);
|
2015-07-14 00:29:32 +02:00
|
|
|
}
|
|
|
|
}
|