2018-01-29 22:48:47 +01:00
|
|
|
package info.nightscout.androidaps;
|
|
|
|
|
2018-02-14 07:47:22 +01:00
|
|
|
import android.app.Activity;
|
2018-01-29 22:48:47 +01:00
|
|
|
import android.os.Bundle;
|
2018-03-16 23:32:17 +01:00
|
|
|
import android.support.v4.content.res.ResourcesCompat;
|
2018-01-29 22:48:47 +01:00
|
|
|
import android.support.v7.app.AppCompatActivity;
|
2018-03-16 23:32:17 +01:00
|
|
|
import android.support.v7.widget.PopupMenu;
|
|
|
|
import android.text.SpannableString;
|
|
|
|
import android.text.style.ForegroundColorSpan;
|
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
2018-01-29 22:48:47 +01:00
|
|
|
import android.view.View;
|
|
|
|
import android.widget.Button;
|
2018-03-16 23:32:17 +01:00
|
|
|
import android.widget.ImageButton;
|
2018-01-29 22:48:47 +01:00
|
|
|
import android.widget.SeekBar;
|
2018-03-17 18:07:22 +01:00
|
|
|
import android.widget.TextView;
|
2018-01-29 22:48:47 +01:00
|
|
|
|
|
|
|
import com.jjoe64.graphview.GraphView;
|
2018-02-14 07:47:22 +01:00
|
|
|
import com.squareup.otto.Subscribe;
|
2018-01-29 22:48:47 +01:00
|
|
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
|
|
import java.util.Calendar;
|
|
|
|
|
|
|
|
import butterknife.BindView;
|
|
|
|
import butterknife.ButterKnife;
|
|
|
|
import butterknife.OnClick;
|
|
|
|
import butterknife.OnLongClick;
|
|
|
|
import info.nightscout.androidaps.data.Profile;
|
2018-02-14 07:47:22 +01:00
|
|
|
import info.nightscout.androidaps.events.EventCustomCalculationFinished;
|
2018-01-29 22:48:47 +01:00
|
|
|
import info.nightscout.androidaps.interfaces.PumpInterface;
|
|
|
|
import info.nightscout.androidaps.plugins.ConfigBuilder.ConfigBuilderPlugin;
|
2018-02-12 20:07:39 +01:00
|
|
|
import info.nightscout.androidaps.plugins.IobCobCalculator.IobCobCalculatorPlugin;
|
2018-02-14 07:47:22 +01:00
|
|
|
import info.nightscout.androidaps.plugins.IobCobCalculator.events.EventAutosensCalculationFinished;
|
2018-03-16 23:32:17 +01:00
|
|
|
import info.nightscout.androidaps.plugins.Overview.OverviewFragment;
|
2018-01-29 22:48:47 +01:00
|
|
|
import info.nightscout.androidaps.plugins.Overview.OverviewPlugin;
|
|
|
|
import info.nightscout.androidaps.plugins.Overview.graphData.GraphData;
|
|
|
|
import info.nightscout.utils.DateUtil;
|
|
|
|
import info.nightscout.utils.SP;
|
|
|
|
|
|
|
|
public class HistoryBrowseActivity extends AppCompatActivity {
|
|
|
|
private static Logger log = LoggerFactory.getLogger(HistoryBrowseActivity.class);
|
|
|
|
|
2018-03-16 23:32:17 +01:00
|
|
|
|
|
|
|
ImageButton chartButton;
|
|
|
|
|
|
|
|
boolean showBasal = true;
|
2018-04-21 12:09:09 +02:00
|
|
|
boolean showIob, showCob, showDev, showRat, showDevslope;
|
2018-03-16 23:32:17 +01:00
|
|
|
|
|
|
|
|
2018-01-29 22:48:47 +01:00
|
|
|
@BindView(R.id.historybrowse_date)
|
|
|
|
Button buttonDate;
|
|
|
|
@BindView(R.id.historybrowse_zoom)
|
|
|
|
Button buttonZoom;
|
|
|
|
@BindView(R.id.historyybrowse_bggraph)
|
|
|
|
GraphView bgGraph;
|
|
|
|
@BindView(R.id.historybrowse_iobgraph)
|
|
|
|
GraphView iobGraph;
|
|
|
|
@BindView(R.id.historybrowse_seekBar)
|
|
|
|
SeekBar seekBar;
|
2018-03-17 18:07:22 +01:00
|
|
|
@BindView(R.id.historybrowse_noprofile)
|
|
|
|
TextView noProfile;
|
2018-01-29 22:48:47 +01:00
|
|
|
|
|
|
|
private int rangeToDisplay = 24; // for graph
|
|
|
|
private long start;
|
|
|
|
|
2018-02-12 20:07:39 +01:00
|
|
|
IobCobCalculatorPlugin iobCobCalculatorPlugin;
|
|
|
|
|
2018-02-14 07:47:22 +01:00
|
|
|
EventCustomCalculationFinished eventCustomCalculationFinished = new EventCustomCalculationFinished();
|
|
|
|
|
2018-02-12 20:07:39 +01:00
|
|
|
public HistoryBrowseActivity() {
|
|
|
|
iobCobCalculatorPlugin = new IobCobCalculatorPlugin();
|
|
|
|
}
|
|
|
|
|
2018-01-29 22:48:47 +01:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setContentView(R.layout.activity_historybrowse);
|
|
|
|
|
|
|
|
ButterKnife.bind(this);
|
|
|
|
|
2018-05-06 11:47:15 +02:00
|
|
|
bgGraph.getGridLabelRenderer().setGridColor(MainApp.gc(R.color.graphgrid));
|
2018-01-29 22:48:47 +01:00
|
|
|
bgGraph.getGridLabelRenderer().reloadStyles();
|
2018-05-06 11:47:15 +02:00
|
|
|
iobGraph.getGridLabelRenderer().setGridColor(MainApp.gc(R.color.graphgrid));
|
2018-01-29 22:48:47 +01:00
|
|
|
iobGraph.getGridLabelRenderer().reloadStyles();
|
|
|
|
iobGraph.getGridLabelRenderer().setHorizontalLabelsVisible(false);
|
|
|
|
bgGraph.getGridLabelRenderer().setLabelVerticalWidth(50);
|
|
|
|
iobGraph.getGridLabelRenderer().setLabelVerticalWidth(50);
|
|
|
|
iobGraph.getGridLabelRenderer().setNumVerticalLabels(5);
|
|
|
|
|
2018-03-16 23:32:17 +01:00
|
|
|
setupChartMenu();
|
|
|
|
|
2018-01-29 22:48:47 +01:00
|
|
|
// set start of current day
|
|
|
|
Calendar calendar = Calendar.getInstance();
|
|
|
|
calendar.setTimeInMillis(System.currentTimeMillis());
|
|
|
|
calendar.set(Calendar.MILLISECOND, 0);
|
|
|
|
calendar.set(Calendar.SECOND, 0);
|
|
|
|
calendar.set(Calendar.MINUTE, 0);
|
|
|
|
calendar.set(Calendar.HOUR_OF_DAY, 0);
|
|
|
|
start = calendar.getTimeInMillis();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
updateGUI("onResume");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@OnClick(R.id.historybrowse_start)
|
|
|
|
void onClickStart() {
|
|
|
|
}
|
|
|
|
|
|
|
|
@OnClick(R.id.historybrowse_left)
|
|
|
|
void onClickLeft() {
|
|
|
|
start -= rangeToDisplay * 60 * 60 * 1000L;
|
|
|
|
updateGUI("left");
|
2018-02-14 07:47:22 +01:00
|
|
|
iobCobCalculatorPlugin.clearCache();
|
|
|
|
iobCobCalculatorPlugin.runCalculation("onClickLeft", start, true, eventCustomCalculationFinished);
|
2018-01-29 22:48:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@OnClick(R.id.historybrowse_right)
|
|
|
|
void onClickRight() {
|
|
|
|
start += rangeToDisplay * 60 * 60 * 1000L;
|
|
|
|
updateGUI("right");
|
2018-02-14 07:47:22 +01:00
|
|
|
iobCobCalculatorPlugin.clearCache();
|
|
|
|
iobCobCalculatorPlugin.runCalculation("onClickRight", start, true, eventCustomCalculationFinished);
|
2018-01-29 22:48:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@OnClick(R.id.historybrowse_end)
|
|
|
|
void onClickEnd() {
|
|
|
|
Calendar calendar = Calendar.getInstance();
|
|
|
|
calendar.setTimeInMillis(System.currentTimeMillis());
|
|
|
|
calendar.set(Calendar.MILLISECOND, 0);
|
|
|
|
calendar.set(Calendar.SECOND, 0);
|
|
|
|
calendar.set(Calendar.MINUTE, 0);
|
|
|
|
calendar.set(Calendar.HOUR_OF_DAY, 0);
|
|
|
|
start = calendar.getTimeInMillis();
|
|
|
|
updateGUI("resetToMidnight");
|
2018-02-14 07:47:22 +01:00
|
|
|
iobCobCalculatorPlugin.clearCache();
|
|
|
|
iobCobCalculatorPlugin.runCalculation("onClickEnd", start, true, eventCustomCalculationFinished);
|
2018-01-29 22:48:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@OnClick(R.id.historybrowse_zoom)
|
|
|
|
void onClickZoom() {
|
|
|
|
rangeToDisplay += 6;
|
|
|
|
rangeToDisplay = rangeToDisplay > 24 ? 6 : rangeToDisplay;
|
|
|
|
updateGUI("rangeChange");
|
|
|
|
}
|
|
|
|
|
|
|
|
@OnLongClick(R.id.historybrowse_zoom)
|
|
|
|
boolean onLongClickZoom() {
|
|
|
|
Calendar calendar = Calendar.getInstance();
|
|
|
|
calendar.setTimeInMillis(start);
|
|
|
|
calendar.set(Calendar.MILLISECOND, 0);
|
|
|
|
calendar.set(Calendar.SECOND, 0);
|
|
|
|
calendar.set(Calendar.MINUTE, 0);
|
|
|
|
calendar.set(Calendar.HOUR_OF_DAY, 0);
|
|
|
|
start = calendar.getTimeInMillis();
|
|
|
|
updateGUI("resetToMidnight");
|
2018-02-14 07:47:22 +01:00
|
|
|
iobCobCalculatorPlugin.clearCache();
|
|
|
|
iobCobCalculatorPlugin.runCalculation("onLongClickZoom", start, true, eventCustomCalculationFinished);
|
2018-01-29 22:48:47 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@OnClick(R.id.historybrowse_date)
|
|
|
|
void onClickDate() {
|
|
|
|
}
|
|
|
|
|
2018-02-14 07:47:22 +01:00
|
|
|
@Subscribe
|
|
|
|
public void onStatusEvent(final EventAutosensCalculationFinished e) {
|
|
|
|
Activity activity = this;
|
|
|
|
if (activity != null && e.cause == eventCustomCalculationFinished) {
|
|
|
|
log.debug("EventAutosensCalculationFinished");
|
|
|
|
activity.runOnUiThread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2018-06-20 22:57:31 +02:00
|
|
|
synchronized (HistoryBrowseActivity.this) {
|
|
|
|
updateGUI("EventAutosensCalculationFinished");
|
|
|
|
}
|
2018-02-14 07:47:22 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-01-29 22:48:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void updateGUI(String from) {
|
2018-06-21 21:58:12 +02:00
|
|
|
|
|
|
|
if (noProfile == null || buttonDate == null || buttonZoom == null || bgGraph == null || iobGraph == null || seekBar == null)
|
|
|
|
return;
|
|
|
|
|
2018-01-29 22:48:47 +01:00
|
|
|
final PumpInterface pump = ConfigBuilderPlugin.getActivePump();
|
|
|
|
final Profile profile = MainApp.getConfigBuilder().getProfile();
|
2018-03-17 18:07:22 +01:00
|
|
|
|
|
|
|
if (profile == null) {
|
|
|
|
noProfile.setVisibility(View.VISIBLE);
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
noProfile.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
|
2018-01-29 22:48:47 +01:00
|
|
|
final String units = profile.getUnits();
|
|
|
|
|
|
|
|
double lowLineSetting = SP.getDouble("low_mark", Profile.fromMgdlToUnits(OverviewPlugin.bgTargetLow, units));
|
|
|
|
double highLineSetting = SP.getDouble("high_mark", Profile.fromMgdlToUnits(OverviewPlugin.bgTargetHigh, units));
|
|
|
|
|
|
|
|
if (lowLineSetting < 1)
|
|
|
|
lowLineSetting = Profile.fromMgdlToUnits(76d, units);
|
|
|
|
if (highLineSetting < 1)
|
|
|
|
highLineSetting = Profile.fromMgdlToUnits(180d, units);
|
|
|
|
|
|
|
|
final double lowLine = lowLineSetting;
|
|
|
|
final double highLine = highLineSetting;
|
|
|
|
|
|
|
|
final boolean showPrediction = false;
|
|
|
|
|
|
|
|
int hoursToFetch;
|
|
|
|
final long toTime;
|
|
|
|
final long fromTime;
|
|
|
|
//if (showPrediction) {
|
|
|
|
//int predHours = (int) (Math.ceil(((DetermineBasalResultAMA) finalLastRun.constraintsProcessed).getLatestPredictionsTime() - System.currentTimeMillis()) / (60 * 60 * 1000));
|
|
|
|
//predHours = Math.min(2, predHours);
|
|
|
|
//predHours = Math.max(0, predHours);
|
|
|
|
//hoursToFetch = rangeToDisplay - predHours;
|
|
|
|
//toTime = calendar.getTimeInMillis() + 100000; // little bit more to avoid wrong rounding - Graphview specific
|
|
|
|
//fromTime = toTime - hoursToFetch * 60 * 60 * 1000L;
|
|
|
|
//endTime = toTime + predHours * 60 * 60 * 1000L;
|
|
|
|
//} else {
|
|
|
|
fromTime = start + 100000;
|
|
|
|
toTime = start + rangeToDisplay * 60 * 60 * 1000L;
|
|
|
|
//}
|
|
|
|
|
|
|
|
buttonDate.setText(DateUtil.dateAndTimeString(start));
|
|
|
|
buttonZoom.setText(String.valueOf(rangeToDisplay));
|
|
|
|
|
|
|
|
log.debug("Period: " + DateUtil.dateAndTimeString(fromTime) + " - " + DateUtil.dateAndTimeString(toTime));
|
|
|
|
|
|
|
|
final long pointer = System.currentTimeMillis();
|
|
|
|
|
|
|
|
// ------------------ 1st graph
|
|
|
|
|
2018-02-12 20:07:39 +01:00
|
|
|
final GraphData graphData = new GraphData(bgGraph, IobCobCalculatorPlugin.getPlugin());
|
2018-01-29 22:48:47 +01:00
|
|
|
|
|
|
|
// **** In range Area ****
|
|
|
|
graphData.addInRangeArea(fromTime, toTime, lowLine, highLine);
|
|
|
|
|
|
|
|
// **** BG ****
|
|
|
|
if (showPrediction)
|
|
|
|
//graphData.addBgReadings(fromTime, toTime, lowLine, highLine, (DetermineBasalResultAMA) finalLastRun.constraintsProcessed);
|
|
|
|
;
|
|
|
|
else
|
|
|
|
graphData.addBgReadings(fromTime, toTime, lowLine, highLine, null);
|
|
|
|
|
|
|
|
// set manual x bounds to have nice steps
|
|
|
|
graphData.formatAxis(fromTime, toTime);
|
|
|
|
|
|
|
|
// Treatments
|
|
|
|
graphData.addTreatments(fromTime, toTime);
|
|
|
|
|
|
|
|
// add basal data
|
2018-03-16 23:32:17 +01:00
|
|
|
if (pump.getPumpDescription().isTempBasalCapable && showBasal) {
|
2018-01-29 22:48:47 +01:00
|
|
|
graphData.addBasals(fromTime, toTime, lowLine / graphData.maxY / 1.2d);
|
|
|
|
}
|
|
|
|
|
|
|
|
// **** NOW line ****
|
|
|
|
graphData.addNowLine(pointer);
|
|
|
|
|
|
|
|
// ------------------ 2nd graph
|
|
|
|
|
2018-02-12 20:07:39 +01:00
|
|
|
final GraphData secondGraphData = new GraphData(iobGraph, iobCobCalculatorPlugin);
|
2018-01-29 22:48:47 +01:00
|
|
|
|
|
|
|
boolean useIobForScale = false;
|
|
|
|
boolean useCobForScale = false;
|
|
|
|
boolean useDevForScale = false;
|
|
|
|
boolean useRatioForScale = false;
|
2018-04-21 12:09:09 +02:00
|
|
|
boolean useDevSlopeForScale = false;
|
2018-01-29 22:48:47 +01:00
|
|
|
|
2018-03-16 23:32:17 +01:00
|
|
|
if (showIob) {
|
2018-01-29 22:48:47 +01:00
|
|
|
useIobForScale = true;
|
2018-03-16 23:32:17 +01:00
|
|
|
} else if (showCob) {
|
2018-01-29 22:48:47 +01:00
|
|
|
useCobForScale = true;
|
2018-03-16 23:32:17 +01:00
|
|
|
} else if (showDev) {
|
2018-01-29 22:48:47 +01:00
|
|
|
useDevForScale = true;
|
2018-03-16 23:32:17 +01:00
|
|
|
} else if (showRat) {
|
2018-01-29 22:48:47 +01:00
|
|
|
useRatioForScale = true;
|
2018-04-21 12:09:09 +02:00
|
|
|
} else if (showDevslope) {
|
|
|
|
useDevSlopeForScale = true;
|
2018-01-29 22:48:47 +01:00
|
|
|
}
|
|
|
|
|
2018-03-16 23:32:17 +01:00
|
|
|
if (showIob)
|
2018-01-29 22:48:47 +01:00
|
|
|
secondGraphData.addIob(fromTime, toTime, useIobForScale, 1d);
|
2018-03-16 23:32:17 +01:00
|
|
|
if (showCob)
|
2018-01-29 22:48:47 +01:00
|
|
|
secondGraphData.addCob(fromTime, toTime, useCobForScale, useCobForScale ? 1d : 0.5d);
|
2018-03-16 23:32:17 +01:00
|
|
|
if (showDev)
|
2018-01-29 22:48:47 +01:00
|
|
|
secondGraphData.addDeviations(fromTime, toTime, useDevForScale, 1d);
|
2018-03-16 23:32:17 +01:00
|
|
|
if (showRat)
|
2018-01-29 22:48:47 +01:00
|
|
|
secondGraphData.addRatio(fromTime, toTime, useRatioForScale, 1d);
|
2018-04-21 12:09:09 +02:00
|
|
|
if (showDevslope)
|
|
|
|
secondGraphData.addDeviationSlope(fromTime, toTime, useDevSlopeForScale, 1d);
|
2018-01-29 22:48:47 +01:00
|
|
|
|
|
|
|
// **** NOW line ****
|
|
|
|
// set manual x bounds to have nice steps
|
|
|
|
secondGraphData.formatAxis(fromTime, toTime);
|
|
|
|
secondGraphData.addNowLine(pointer);
|
|
|
|
|
|
|
|
// do GUI update
|
2018-04-21 12:09:09 +02:00
|
|
|
if (showIob || showCob || showDev || showRat || showDevslope) {
|
2018-01-29 22:48:47 +01:00
|
|
|
iobGraph.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
iobGraph.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
// finally enforce drawing of graphs
|
|
|
|
graphData.performUpdate();
|
|
|
|
secondGraphData.performUpdate();
|
|
|
|
}
|
2018-03-16 23:32:17 +01:00
|
|
|
|
|
|
|
private void setupChartMenu() {
|
|
|
|
chartButton = (ImageButton) findViewById(R.id.overview_chartMenuButton);
|
|
|
|
chartButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
MenuItem item;
|
|
|
|
CharSequence title;
|
|
|
|
SpannableString s;
|
|
|
|
PopupMenu popup = new PopupMenu(v.getContext(), v);
|
|
|
|
|
|
|
|
|
|
|
|
item = popup.getMenu().add(Menu.NONE, OverviewFragment.CHARTTYPE.BAS.ordinal(), Menu.NONE, MainApp.gs(R.string.overview_show_basals));
|
|
|
|
title = item.getTitle();
|
|
|
|
s = new SpannableString(title);
|
|
|
|
s.setSpan(new ForegroundColorSpan(ResourcesCompat.getColor(getResources(), R.color.basal, null)), 0, s.length(), 0);
|
|
|
|
item.setTitle(s);
|
|
|
|
item.setCheckable(true);
|
|
|
|
item.setChecked(showBasal);
|
|
|
|
|
|
|
|
item = popup.getMenu().add(Menu.NONE, OverviewFragment.CHARTTYPE.IOB.ordinal(), Menu.NONE, MainApp.gs(R.string.overview_show_iob));
|
|
|
|
title = item.getTitle();
|
|
|
|
s = new SpannableString(title);
|
|
|
|
s.setSpan(new ForegroundColorSpan(ResourcesCompat.getColor(getResources(), R.color.iob, null)), 0, s.length(), 0);
|
|
|
|
item.setTitle(s);
|
|
|
|
item.setCheckable(true);
|
|
|
|
item.setChecked(showIob);
|
|
|
|
|
|
|
|
item = popup.getMenu().add(Menu.NONE, OverviewFragment.CHARTTYPE.COB.ordinal(), Menu.NONE, MainApp.gs(R.string.overview_show_cob));
|
|
|
|
title = item.getTitle();
|
|
|
|
s = new SpannableString(title);
|
|
|
|
s.setSpan(new ForegroundColorSpan(ResourcesCompat.getColor(getResources(), R.color.cob, null)), 0, s.length(), 0);
|
|
|
|
item.setTitle(s);
|
|
|
|
item.setCheckable(true);
|
|
|
|
item.setChecked(showCob);
|
|
|
|
|
|
|
|
item = popup.getMenu().add(Menu.NONE, OverviewFragment.CHARTTYPE.DEV.ordinal(), Menu.NONE, MainApp.gs(R.string.overview_show_deviations));
|
|
|
|
title = item.getTitle();
|
|
|
|
s = new SpannableString(title);
|
|
|
|
s.setSpan(new ForegroundColorSpan(ResourcesCompat.getColor(getResources(), R.color.deviations, null)), 0, s.length(), 0);
|
|
|
|
item.setTitle(s);
|
|
|
|
item.setCheckable(true);
|
|
|
|
item.setChecked(showDev);
|
|
|
|
|
|
|
|
item = popup.getMenu().add(Menu.NONE, OverviewFragment.CHARTTYPE.SEN.ordinal(), Menu.NONE, MainApp.gs(R.string.overview_show_sensitivity));
|
|
|
|
title = item.getTitle();
|
|
|
|
s = new SpannableString(title);
|
|
|
|
s.setSpan(new ForegroundColorSpan(ResourcesCompat.getColor(getResources(), R.color.ratio, null)), 0, s.length(), 0);
|
|
|
|
item.setTitle(s);
|
|
|
|
item.setCheckable(true);
|
|
|
|
item.setChecked(showRat);
|
|
|
|
|
2018-04-21 12:09:09 +02:00
|
|
|
if (MainApp.devBranch) {
|
|
|
|
item = popup.getMenu().add(Menu.NONE, OverviewFragment.CHARTTYPE.DEVSLOPE.ordinal(), Menu.NONE, "Deviation slope");
|
|
|
|
title = item.getTitle();
|
|
|
|
s = new SpannableString(title);
|
|
|
|
s.setSpan(new ForegroundColorSpan(ResourcesCompat.getColor(getResources(), R.color.devslopepos, null)), 0, s.length(), 0);
|
|
|
|
item.setTitle(s);
|
|
|
|
item.setCheckable(true);
|
|
|
|
item.setChecked(showDevslope);
|
|
|
|
}
|
|
|
|
|
2018-03-16 23:32:17 +01:00
|
|
|
popup.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onMenuItemClick(MenuItem item) {
|
|
|
|
if (item.getItemId() == OverviewFragment.CHARTTYPE.BAS.ordinal()) {
|
|
|
|
showBasal = !item.isChecked();
|
|
|
|
} else if (item.getItemId() == OverviewFragment.CHARTTYPE.IOB.ordinal()) {
|
|
|
|
showIob = !item.isChecked();
|
|
|
|
} else if (item.getItemId() == OverviewFragment.CHARTTYPE.COB.ordinal()) {
|
|
|
|
showCob = !item.isChecked();
|
|
|
|
} else if (item.getItemId() == OverviewFragment.CHARTTYPE.DEV.ordinal()) {
|
|
|
|
showDev = !item.isChecked();
|
|
|
|
} else if (item.getItemId() == OverviewFragment.CHARTTYPE.SEN.ordinal()) {
|
|
|
|
showRat = !item.isChecked();
|
2018-04-21 12:09:09 +02:00
|
|
|
} else if (item.getItemId() == OverviewFragment.CHARTTYPE.DEVSLOPE.ordinal()) {
|
|
|
|
showDevslope = !item.isChecked();
|
2018-03-16 23:32:17 +01:00
|
|
|
}
|
|
|
|
updateGUI("onGraphCheckboxesCheckedChanged");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
chartButton.setImageResource(R.drawable.ic_arrow_drop_up_white_24dp);
|
|
|
|
popup.setOnDismissListener(new PopupMenu.OnDismissListener() {
|
|
|
|
@Override
|
|
|
|
public void onDismiss(PopupMenu menu) {
|
|
|
|
chartButton.setImageResource(R.drawable.ic_arrow_drop_down_white_24dp);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
popup.show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-01-29 22:48:47 +01:00
|
|
|
}
|