123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /*
- * Nextcloud Android client application
- *
- * @author Tobias Kaminsky
- * @author Andy Scherzinger
- * Copyright (C) 2017 Tobias Kaminsky
- * Copyright (C) 2017 Nextcloud GmbH
- * Copyright (C) 2018 Andy Scherzinger
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.owncloud.android.utils.theme;
- import android.content.Context;
- import android.content.res.ColorStateList;
- import android.graphics.Color;
- import android.graphics.PorterDuff;
- import android.widget.Button;
- import android.widget.ImageButton;
- import com.owncloud.android.R;
- import androidx.annotation.ColorInt;
- import androidx.annotation.Nullable;
- import androidx.core.content.ContextCompat;
- /**
- * Utility class with methods for client side button theming.
- */
- public final class ThemeButtonUtils {
- /**
- * sets the tinting of the given ImageButton's icon to color_accent.
- *
- * @param imageButton the image button who's icon should be colored
- */
- public static void colorImageButton(ImageButton imageButton, @ColorInt int color) {
- if (imageButton != null) {
- imageButton.setColorFilter(color, PorterDuff.Mode.SRC_ATOP);
- }
- }
- public static void colorPrimaryButton(Button button, Context context) {
- int primaryColor = ThemeColorUtils.primaryColor(null, true, false, context);
- int fontColor = ThemeColorUtils.fontColor(context, false);
- button.setBackgroundColor(primaryColor);
- if (Color.BLACK == primaryColor) {
- button.setTextColor(Color.WHITE);
- } else if (Color.WHITE == primaryColor) {
- button.setTextColor(Color.BLACK);
- } else {
- button.setTextColor(fontColor);
- }
- }
- /**
- * theme buttons based on accent color.
- *
- * @param buttons borderless buttons to be themed
- */
- public static void themeBorderlessButton(@Nullable Button... buttons) {
- if (buttons == null || buttons.length < 1) {
- return;
- }
- themeBorderlessButton(ThemeColorUtils.primaryAccentColor(buttons[0].getContext()), buttons);
- }
- /**
- * theme buttons based on given color.
- *
- * @param color theme color
- * @param buttons borderless buttons to be themed
- */
- public static void themeBorderlessButton(int color, @Nullable Button... buttons) {
- if (buttons == null || buttons.length < 1) {
- return;
- }
- Context context = buttons[0].getContext();
- int disabledColor = ContextCompat.getColor(context, R.color.disabled_text);
- ColorStateList colorStateList = new ColorStateList(
- new int[][]{
- new int[]{android.R.attr.state_enabled}, // enabled
- new int[]{-android.R.attr.state_enabled}, // disabled
- },
- new int[]{
- color,
- disabledColor
- }
- );
- for (Button button: buttons) {
- button.setTextColor(colorStateList);
- }
- }
- }
|