Combo: better error message when initialization fails.
This commit is contained in:
parent
a64bfe7a39
commit
599c87f794
1 changed files with 8 additions and 2 deletions
|
@ -120,12 +120,18 @@ public class ComboFragment extends SubscriberFragment implements View.OnClickLis
|
||||||
|
|
||||||
// activity
|
// activity
|
||||||
String activity = plugin.getPump().activity;
|
String activity = plugin.getPump().activity;
|
||||||
if (StringUtils.isNotEmpty(activity)) {
|
if (activity != null) {
|
||||||
|
activityView.setTextColor(Color.WHITE);
|
||||||
activityView.setTextSize(14);
|
activityView.setTextSize(14);
|
||||||
activityView.setText(activity);
|
activityView.setText(activity);
|
||||||
} else {
|
} else if (plugin.isInitialized()){
|
||||||
|
activityView.setTextColor(Color.WHITE);
|
||||||
activityView.setTextSize(20);
|
activityView.setTextSize(20);
|
||||||
activityView.setText("{fa-bed}");
|
activityView.setText("{fa-bed}");
|
||||||
|
} else {
|
||||||
|
activityView.setTextColor(Color.RED);
|
||||||
|
activityView.setTextSize(14);
|
||||||
|
activityView.setText(MainApp.gs(R.string.pump_unreachable));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (plugin.isInitialized()) {
|
if (plugin.isInitialized()) {
|
||||||
|
|
Loading…
Reference in a new issue