123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- /*
- * ownCloud Android client application
- *
- * @author Andy Scherzinger
- * @author Tobias Kaminsiky
- * @author Chris Narkiewicz
- * Copyright (C) 2016 ownCloud Inc.
- * Copyright (C) 2018 Andy Scherzinger
- * Copyright (C) 2019 Chris Narkiewicz <hello@ezaquarii.com>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2,
- * as published by the Free Software Foundation.
- *
- * 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.owncloud.android.ui;
- import android.accounts.Account;
- import android.graphics.Canvas;
- import android.graphics.Color;
- import android.graphics.ColorFilter;
- import android.graphics.Paint;
- import android.graphics.PixelFormat;
- import android.graphics.drawable.Drawable;
- import com.nextcloud.client.account.UserAccountManager;
- import com.owncloud.android.authentication.AccountUtils;
- import com.owncloud.android.utils.BitmapUtils;
- import com.owncloud.android.utils.NextcloudServer;
- import java.io.UnsupportedEncodingException;
- import java.security.NoSuchAlgorithmException;
- import java.util.Locale;
- import androidx.annotation.NonNull;
- /**
- * A Drawable object that draws text (1 character) on top of a circular/filled background.
- */
- public class TextDrawable extends Drawable {
- /**
- * the text to be rendered.
- */
- private String mText;
- /**
- * the text paint to be rendered.
- */
- private Paint mTextPaint;
- /**
- * the background to be rendered.
- */
- private Paint mBackground;
- /**
- * the radius of the circular background to be rendered.
- */
- private float mRadius;
- /**
- * Create a TextDrawable with the given radius.
- *
- * @param text the text to be rendered
- * @param r rgb red value
- * @param g rgb green value
- * @param b rgb blue value
- * @param radius circle radius
- */
- public TextDrawable(String text, int r, int g, int b, float radius) {
- mRadius = radius;
- mText = text;
- mBackground = new Paint();
- mBackground.setStyle(Paint.Style.FILL);
- mBackground.setAntiAlias(true);
- mBackground.setColor(Color.rgb(r, g, b));
- mTextPaint = new Paint();
- mTextPaint.setColor(Color.WHITE);
- mTextPaint.setTextSize(radius);
- mTextPaint.setAntiAlias(true);
- mTextPaint.setTextAlign(Paint.Align.CENTER);
- }
- /**
- * creates an avatar in form of a TextDrawable with the first letter of the account name in a circle with the
- * given radius.
- *
- * @param account user account
- * @param radiusInDp the circle's radius
- * @return the avatar as a TextDrawable
- * @throws UnsupportedEncodingException if the charset is not supported when calculating the color values
- * @throws NoSuchAlgorithmException if the specified algorithm is not available when calculating the color values
- */
- @NonNull
- @NextcloudServer(max = 12)
- public static TextDrawable createAvatar(Account account, float radiusInDp) throws
- NoSuchAlgorithmException {
- String username = UserAccountManager.getUsername(account);
- return createNamedAvatar(username, radiusInDp);
- }
- /**
- * creates an avatar in form of a TextDrawable with the first letter of the account name in a circle with the
- * given radius.
- *
- * @param userId userId to use
- * @param radiusInDp the circle's radius
- * @return the avatar as a TextDrawable
- * @throws UnsupportedEncodingException if the charset is not supported when calculating the color values
- * @throws NoSuchAlgorithmException if the specified algorithm is not available when calculating the color values
- */
- @NonNull
- @NextcloudServer(max = 12)
- public static TextDrawable createAvatarByUserId(String userId, float radiusInDp) throws
- NoSuchAlgorithmException {
- return createNamedAvatar(userId, radiusInDp);
- }
- /**
- * creates an avatar in form of a TextDrawable with the first letter of a name in a circle with the
- * given radius.
- *
- * @param name the name
- * @param radiusInDp the circle's radius
- * @return the avatar as a TextDrawable
- * @throws NoSuchAlgorithmException if the specified algorithm is not available when calculating the color values
- */
- @NonNull
- public static TextDrawable createNamedAvatar(String name, float radiusInDp) throws NoSuchAlgorithmException {
- int[] hsl = BitmapUtils.calculateHSL(name);
- int[] rgb = BitmapUtils.HSLtoRGB(hsl[0], hsl[1], hsl[2], 1);
- return new TextDrawable(name.substring(0, 1).toUpperCase(Locale.getDefault()), rgb[0], rgb[1], rgb[2],
- radiusInDp);
- }
- /**
- * Draw in its bounds (set via setBounds) respecting optional effects such as alpha (set via setAlpha) and color
- * filter (set via setColorFilter) a circular background with a user's first character.
- *
- * @param canvas The canvas to draw into
- */
- @Override
- public void draw(@NonNull Canvas canvas) {
- canvas.drawCircle(mRadius, mRadius, mRadius, mBackground);
- canvas.drawText(mText, mRadius, mRadius - ((mTextPaint.descent() + mTextPaint.ascent()) / 2), mTextPaint);
- }
- @Override
- public void setAlpha(int alpha) {
- mTextPaint.setAlpha(alpha);
- }
- @Override
- public void setColorFilter(ColorFilter cf) {
- mTextPaint.setColorFilter(cf);
- }
- @Override
- public int getOpacity() {
- return PixelFormat.TRANSLUCENT;
- }
- }
|