X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fui%2Factivity%2FProfileThemedActivity.java;h=77a9272bf9880494b52987c65db457c08bb22711;hp=1301a85fc6ce4b0132c23b944ac49d498e23ce79;hb=e9f62bfdc1d868b76f7d25e20cd9807be672809a;hpb=e975cffd3885678f30f69d09fbc99905c3118588 diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/activity/ProfileThemedActivity.java b/app/src/main/java/net/ktnx/mobileledger/ui/activity/ProfileThemedActivity.java index 1301a85f..77a9272b 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/activity/ProfileThemedActivity.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/activity/ProfileThemedActivity.java @@ -1,31 +1,37 @@ /* * Copyright © 2019 Damyan Ivanov. - * This file is part of MoLe. - * MoLe is free software: you can distribute it and/or modify it - * under the term of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your opinion), any later version. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. * - * MoLe is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License terms for details. + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. * - * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . */ package net.ktnx.mobileledger.ui.activity; +import android.annotation.SuppressLint; import android.os.Bundle; -import net.ktnx.mobileledger.utils.Colors; - import androidx.annotation.Nullable; +import net.ktnx.mobileledger.model.Data; +import net.ktnx.mobileledger.model.MobileLedgerProfile; +import net.ktnx.mobileledger.utils.Colors; +import net.ktnx.mobileledger.utils.MLDB; + +@SuppressLint("Registered") public class ProfileThemedActivity extends CrashReportingActivity { + protected MobileLedgerProfile mProfile; protected void setupProfileColors() { - Colors.setupTheme(this); + Colors.setupTheme(this, mProfile); } @Override protected void onStart() { @@ -33,7 +39,26 @@ public class ProfileThemedActivity extends CrashReportingActivity { Colors.refreshColors(getTheme()); } protected void onCreate(@Nullable Bundle savedInstanceState) { + initProfile(); super.onCreate(savedInstanceState); - Colors.setupTheme(this); + + setupProfileColors(); + + Data.profile.observe(this, mobileLedgerProfile -> { + mProfile = mobileLedgerProfile; + setupProfileColors(); + }); + } + protected void initProfile() { + mProfile = Data.profile.getValue(); + if (mProfile == null) { + String profileUUID = MLDB.getOption(MLDB.OPT_PROFILE_UUID, null); + MobileLedgerProfile startupProfile; + + + startupProfile = Data.getProfile(profileUUID); + Data.setCurrentProfile(startupProfile); + mProfile = startupProfile; + } } }