public static MutableLiveData<Date> lastUpdateDate = new MutableLiveData<>();
public static MutableLiveData<MobileLedgerProfile> profile = new MutableLiveData<>();
public static MutableLiveData<ArrayList<MobileLedgerProfile>> profiles =
- new MutableLiveData<>(new ArrayList<>());
+ new MutableLiveData<>(null);
public static ObservableValue<Boolean> optShowOnlyStarred = new ObservableValue<>();
public static MutableLiveData<String> accountFilter = new MutableLiveData<>();
private static AtomicInteger backgroundTaskCount = new AtomicInteger(0);
MobileLedgerProfile profile;
try (LockHolder readLock = profilesLocker.lockForReading()) {
List<MobileLedgerProfile> prList = profiles.getValue();
- assert prList != null;
- if (prList.isEmpty()) {
+ if ((prList == null) || prList.isEmpty()) {
readLock.close();
try (LockHolder ignored = profilesLocker.lockForWriting()) {
profile = MobileLedgerProfile.loadAllFromDB(profileUUID);
sm.setDynamicShortcuts(shortcuts);
}
private void onProfileListChanged(List<MobileLedgerProfile> newList) {
+ if (newList == null) {
+ // profiles not yet loaded from DB
+ findViewById(R.id.loading_layout).setVisibility(View.VISIBLE);
+ findViewById(R.id.no_profiles_layout).setVisibility(View.GONE);
+ findViewById(R.id.pager_layout).setVisibility(View.GONE);
+ return;
+ }
+
if (newList.isEmpty()) {
findViewById(R.id.no_profiles_layout).setVisibility(View.VISIBLE);
findViewById(R.id.pager_layout).setVisibility(View.GONE);