Don't set text onunbound gui elements

This commit is contained in:
AdrianLxM 2018-06-08 06:19:02 +02:00 committed by GitHub
parent 9e099ec741
commit 97bbc00dcf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -154,6 +154,10 @@ public class DanaRFragment extends SubscriberFragment {
new Runnable() {
@Override
public void run() {
synchronized(DanaRFragment.this){
if(btConnectionView == null || pumpStatusView == null || pumpStatusLayout == null ) return;
if (c.sStatus == EventPumpStatusChanged.CONNECTING)
btConnectionView.setText("{fa-bluetooth-b spin} " + c.sSecondsElapsed + "s");
else if (c.sStatus == EventPumpStatusChanged.CONNECTED)
@ -169,6 +173,7 @@ public class DanaRFragment extends SubscriberFragment {
}
}
}
}
);
}
}