]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/activity/ProfileDetailActivity.java
migrate a bunch of globals to LiveData
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / activity / ProfileDetailActivity.java
1 /*
2  * Copyright © 2019 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * MoLe is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.ui.activity;
19
20 import android.os.Bundle;
21 import android.view.Menu;
22
23 import net.ktnx.mobileledger.R;
24 import net.ktnx.mobileledger.model.Data;
25 import net.ktnx.mobileledger.model.MobileLedgerProfile;
26 import net.ktnx.mobileledger.ui.profiles.ProfileDetailFragment;
27 import net.ktnx.mobileledger.utils.Colors;
28
29 import java.util.ArrayList;
30 import java.util.Locale;
31
32 import androidx.appcompat.app.ActionBar;
33 import androidx.appcompat.widget.Toolbar;
34
35 import static net.ktnx.mobileledger.utils.Logger.debug;
36
37 /**
38  * An activity representing a single Profile detail screen. This
39  * activity is only used on narrow width devices. On tablet-size devices,
40  * item details are presented side-by-side with a list of items
41  * in a ProfileListActivity (not really).
42  */
43 public class ProfileDetailActivity extends CrashReportingActivity {
44     private MobileLedgerProfile profile = null;
45     private ProfileDetailFragment mFragment;
46     @Override
47     protected void onCreate(Bundle savedInstanceState) {
48         final int index = getIntent().getIntExtra(ProfileDetailFragment.ARG_ITEM_ID, -1);
49
50         if (index != -1) {
51             ArrayList<MobileLedgerProfile> profiles = Data.profiles.getValue();
52             if (profiles != null) {
53                 profile = profiles.get(index);
54                 if (profile == null) throw new AssertionError(
55                         String.format("Can't get profile " + "(index:%d) from the global list",
56                                 index));
57
58                 debug("profiles", String.format(Locale.ENGLISH, "Editing profile %s (%s); hue=%d",
59                         profile.getName(), profile.getUuid(), profile.getThemeId()));
60             }
61         }
62
63         super.onCreate(savedInstanceState);
64         Colors.setupTheme(this, profile);
65         setContentView(R.layout.activity_profile_detail);
66         Toolbar toolbar = findViewById(R.id.detail_toolbar);
67         setSupportActionBar(toolbar);
68
69         // Show the Up button in the action bar.
70         ActionBar actionBar = getSupportActionBar();
71         if (actionBar != null) {
72             actionBar.setDisplayHomeAsUpEnabled(true);
73         }
74
75         // savedInstanceState is non-null when there is fragment state
76         // saved from previous configurations of this activity
77         // (e.g. when rotating the screen from portrait to landscape).
78         // In this case, the fragment will automatically be re-added
79         // to its container so we don't need to manually add it.
80         // For more information, see the Fragments API guide at:
81         //
82         // http://developer.android.com/guide/components/fragments.html
83         //
84         if (savedInstanceState == null) {
85             // Create the detail fragment and add it to the activity
86             // using a fragment transaction.
87             Bundle arguments = new Bundle();
88             arguments.putInt(ProfileDetailFragment.ARG_ITEM_ID, index);
89             mFragment = new ProfileDetailFragment();
90             mFragment.setArguments(arguments);
91             getSupportFragmentManager().beginTransaction()
92                     .add(R.id.profile_detail_container, mFragment).commit();
93         }
94     }
95     @Override
96     public boolean onCreateOptionsMenu(Menu menu) {
97         super.onCreateOptionsMenu(menu);
98         debug("profiles", "[activity] Creating profile details options menu");
99         if (mFragment != null) mFragment.onCreateOptionsMenu(menu, getMenuInflater());
100
101         return true;
102     }
103
104 }