]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/activity/ProfileDetailActivity.java
wrap Log.d calls, skipping them on non-debug builds
[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 androidx.appcompat.app.ActionBar;
30 import androidx.appcompat.widget.Toolbar;
31
32 import static net.ktnx.mobileledger.utils.Logger.debug;
33
34 /**
35  * An activity representing a single Profile detail screen. This
36  * activity is only used on narrow width devices. On tablet-size devices,
37  * item details are presented side-by-side with a list of items
38  * in a ProfileListActivity (not really).
39  */
40 public class ProfileDetailActivity extends CrashReportingActivity {
41     private MobileLedgerProfile profile = null;
42     private ProfileDetailFragment mFragment;
43     @Override
44     protected void onCreate(Bundle savedInstanceState) {
45         final int index = getIntent().getIntExtra(ProfileDetailFragment.ARG_ITEM_ID, -1);
46
47         if (index != -1) {
48             profile = Data.profiles.get(index);
49             if (profile == null) throw new AssertionError(
50                     String.format("Can't get profile " + "(index:%d) from the global list", index));
51
52             debug("profiles", String.format("Editing profile %s (%s); hue=%d", profile.getName(),
53                     profile.getUuid(), profile.getThemeId()));
54         }
55
56         super.onCreate(savedInstanceState);
57         Colors.setupTheme(this, profile);
58         setContentView(R.layout.activity_profile_detail);
59         Toolbar toolbar = findViewById(R.id.detail_toolbar);
60         setSupportActionBar(toolbar);
61
62         // Show the Up button in the action bar.
63         ActionBar actionBar = getSupportActionBar();
64         if (actionBar != null) {
65             actionBar.setDisplayHomeAsUpEnabled(true);
66         }
67
68         // savedInstanceState is non-null when there is fragment state
69         // saved from previous configurations of this activity
70         // (e.g. when rotating the screen from portrait to landscape).
71         // In this case, the fragment will automatically be re-added
72         // to its container so we don't need to manually add it.
73         // For more information, see the Fragments API guide at:
74         //
75         // http://developer.android.com/guide/components/fragments.html
76         //
77         if (savedInstanceState == null) {
78             // Create the detail fragment and add it to the activity
79             // using a fragment transaction.
80             Bundle arguments = new Bundle();
81             arguments.putInt(ProfileDetailFragment.ARG_ITEM_ID, index);
82             mFragment = new ProfileDetailFragment();
83             mFragment.setArguments(arguments);
84             getSupportFragmentManager().beginTransaction()
85                     .add(R.id.profile_detail_container, mFragment).commit();
86         }
87     }
88     @Override
89     public boolean onCreateOptionsMenu(Menu menu) {
90         super.onCreateOptionsMenu(menu);
91         debug("profiles", "[activity] Creating profile details options menu");
92         if (mFragment != null) mFragment.onCreateOptionsMenu(menu, getMenuInflater());
93
94         return true;
95     }
96
97 }