empty constructor in progressdialog
This commit is contained in:
parent
d85bb7db4d
commit
129c88478f
|
@ -30,10 +30,14 @@ public class BolusProgressDialog extends DialogFragment implements View.OnClickL
|
||||||
TextView stopPressedView;
|
TextView stopPressedView;
|
||||||
ProgressBar progressBar;
|
ProgressBar progressBar;
|
||||||
|
|
||||||
double amount;
|
static double amount;
|
||||||
|
|
||||||
boolean started = false;
|
boolean started = false;
|
||||||
|
|
||||||
|
public BolusProgressDialog() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
public BolusProgressDialog(double amount) {
|
public BolusProgressDialog(double amount) {
|
||||||
this.amount = amount;
|
this.amount = amount;
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,7 @@ public class NewTreatmentDialog extends DialogFragment implements OnClickListene
|
||||||
Handler mHandler;
|
Handler mHandler;
|
||||||
public static HandlerThread mHandlerThread;
|
public static HandlerThread mHandlerThread;
|
||||||
|
|
||||||
Context parentContext;
|
Context parentContext = null;
|
||||||
|
|
||||||
public NewTreatmentDialog(Context context) {
|
public NewTreatmentDialog(Context context) {
|
||||||
mHandlerThread = new HandlerThread(NewTreatmentDialog.class.getSimpleName());
|
mHandlerThread = new HandlerThread(NewTreatmentDialog.class.getSimpleName());
|
||||||
|
|
Loading…
Reference in a new issue