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

CompactLabelLayout.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: ae44b2ddedba7053650ff78b8992aa6f7c746040 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package it.niedermann.nextcloud.deck.ui.view;

import android.content.Context;
import android.util.AttributeSet;

import androidx.annotation.NonNull;

import it.niedermann.nextcloud.deck.model.Label;

public class CompactLabelLayout extends LabelLayout {

    public CompactLabelLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected LabelChip createLabelChip(@NonNull Label label) {
        return new CompactLabelChip(getContext(), label, gutter);
    }
}