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=fb6db900d7031f0fefe82c40b4997d44ed533dbb;hp=1301a85fc6ce4b0132c23b944ac49d498e23ce79;hb=99c3bfb3451ebb1fc55d728d8d1741849cf789db;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..fb6db900 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,36 @@ /* * 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.model.Data; +import net.ktnx.mobileledger.model.MobileLedgerProfile; import net.ktnx.mobileledger.utils.Colors; import androidx.annotation.Nullable; +@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 +38,11 @@ public class ProfileThemedActivity extends CrashReportingActivity { Colors.refreshColors(getTheme()); } protected void onCreate(@Nullable Bundle savedInstanceState) { + initProfile(); super.onCreate(savedInstanceState); - Colors.setupTheme(this); + setupProfileColors(); + } + protected void initProfile() { + mProfile = Data.profile.get(); } }