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

EmptyContentView.java « view « 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: 2b3557694eaab1add57f7a51e31f4ccb9057f5b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package it.niedermann.nextcloud.deck.ui.view;

import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.RelativeLayout;

import androidx.annotation.NonNull;
import androidx.annotation.StringRes;

import com.nextcloud.android.common.ui.theme.utils.ColorRole;

import it.niedermann.nextcloud.deck.R;
import it.niedermann.nextcloud.deck.databinding.WidgetEmptyContentViewBinding;
import it.niedermann.nextcloud.deck.ui.theme.ThemeUtils;
import it.niedermann.nextcloud.deck.ui.theme.Themed;

public class EmptyContentView extends RelativeLayout implements Themed {

    private static final int NO_DESCRIPTION = -1;

    private final WidgetEmptyContentViewBinding binding;

    public EmptyContentView(@NonNull Context context, AttributeSet attrs) {
        super(context, attrs);

        binding = WidgetEmptyContentViewBinding.inflate(LayoutInflater.from(context), this, true);

        final var styles = context.obtainStyledAttributes(attrs, R.styleable.EmptyContentView, 0, 0);
        @StringRes int descriptionRes = styles.getResourceId(R.styleable.EmptyContentView_description, NO_DESCRIPTION);
        binding.title.setText(getResources().getString(styles.getResourceId(R.styleable.EmptyContentView_title, R.string.no_content)));
        if (descriptionRes == NO_DESCRIPTION) {
            binding.description.setVisibility(View.GONE);
        } else {
            binding.description.setText(getResources().getString(descriptionRes));
        }
        binding.image.setImageResource(styles.getResourceId(R.styleable.EmptyContentView_image, R.drawable.ic_app_logo));
        styles.recycle();
    }

    public void hideDescription() {
        binding.description.setVisibility(View.GONE);
    }

    public void showDescription() {
        binding.description.setVisibility(View.VISIBLE);
    }

    @Override
    public void applyTheme(int color) {
        final var utils = ThemeUtils.of(color, getContext());

//        utils.platform.colorImageView(binding.image, ColorRole.SECONDARY_CONTAINER);
        utils.platform.colorTextView(binding.title, ColorRole.ON_SURFACE);
        utils.platform.colorTextView(binding.description, ColorRole.ON_SURFACE);
    }
}