Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BrandedFragment.java « branding « ui « deck « nextcloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c9e23ae10e291a632df7abb3707357d5113db7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package it.niedermann.nextcloud.deck.ui.branding;

import android.content.Context;

import androidx.annotation.ColorInt;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;

import it.niedermann.nextcloud.deck.Application;

public abstract class BrandedFragment extends Fragment implements Branded {

    @Override
    public void onStart() {
        super.onStart();

        @Nullable Context context = getContext();
        if (context != null && Application.isBrandingEnabled(context)) {
            @ColorInt final int mainColor = Application.readBrandMainColor(context);
            applyBrand(mainColor);
        }
    }
}