Browse Source

resized text, style and alignment within TextDrawable + cleanups

Andy Scherzinger 9 years ago
parent
commit
8b002c5d17

+ 69 - 80
src/com/owncloud/android/ui/TextDrawable.java

@@ -1,21 +1,21 @@
 /**
- *   ownCloud Android client application
+ * ownCloud Android client application
  *
- *   @author Andy Scherzinger
- *   @author Tobias Kaminsiky
- *   Copyright (C) 2016 ownCloud Inc.
- *
- *   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/>.
+ * @author Andy Scherzinger
+ * @author Tobias Kaminsiky
+ * Copyright (C) 2016 ownCloud Inc.
+ * <p/>
+ * 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.
+ * <p/>
+ * 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.
+ * <p/>
+ * 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;
@@ -34,28 +34,28 @@ import java.io.UnsupportedEncodingException;
 import java.security.NoSuchAlgorithmException;
 
 /**
- * A Drawable object that draws text (1 letter) on top of a circular/filled background.
+ * 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;
 
-    private String text;
-    private Paint paint;
-    private Paint bg;
-    private float radius;
-    private float textX;
-    private float textY;
+    /**
+     * the background to be rendered.
+     */
+    private Paint mBackground;
 
     /**
-     * Create a TextDrawable with a standard radius.
-     *
-     * @param text the text to be rendered
-     * @param r    rgb red value
-     * @param g    rgb green value
-     * @param b    rgb blue value
+     * the radius of the circular background to be rendered.
      */
-    public TextDrawable(String text, int r, int g, int b) {
-        init(text, r, g, b, 40);
-    }
+    private float mRadius;
 
     /**
      * Create a TextDrawable with the given radius.
@@ -67,75 +67,64 @@ public class TextDrawable extends Drawable {
      * @param radius circle radius
      */
     public TextDrawable(String text, int r, int g, int b, float radius) {
-        init(text, r, g, b, 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);
     }
 
     /**
-     * initializes the TextDrawable.
+     * creates an avatar in form of  a TextDrawable with the first letter of the account name in a circle 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
+     * @param accountName the account name
+     * @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
      */
-    private void init(String text, int r, int g, int b, float radius) {
-        this.radius = radius;
-        this.text = text;
-        this.textX = (float) (radius * 0.5);
-        this.textY = (float) (radius * 1.5);
-
-        bg = new Paint();
-        bg.setStyle(Paint.Style.FILL);
-        bg.setAntiAlias(true);
-        bg.setColor(Color.rgb(r, g, b));
-
-        paint = new Paint();
-        paint.setColor(Color.WHITE);
-        paint.setTextSize((float) (radius * 1.5));
-        paint.setAntiAlias(true);
-        paint.setFakeBoldText(true);
+    @NonNull
+    public static TextDrawable createAvatar(String accountName, float radiusInDp) throws
+            UnsupportedEncodingException, NoSuchAlgorithmException {
+        int[] rgb = BitmapUtils.calculateRGB(accountName);
+        TextDrawable avatar = new TextDrawable(
+                accountName.substring(0, 1).toUpperCase(), rgb[0], rgb[1], rgb[2], radiusInDp);
+        return avatar;
     }
 
+    /**
+     * 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(Canvas canvas) {
-        canvas.drawCircle(radius, radius, radius, bg);
-        canvas.drawText(text, textX, textY, paint);
+        canvas.drawCircle(mRadius, mRadius, mRadius, mBackground);
+        canvas.drawText(mText, mRadius, mRadius - ((mTextPaint.descent() + mTextPaint.ascent()) / 2), mTextPaint);
     }
 
     @Override
     public void setAlpha(int alpha) {
-        paint.setAlpha(alpha);
+        mTextPaint.setAlpha(alpha);
     }
 
     @Override
     public void setColorFilter(ColorFilter cf) {
-        paint.setColorFilter(cf);
+        mTextPaint.setColorFilter(cf);
     }
 
     @Override
     public int getOpacity() {
         return PixelFormat.TRANSLUCENT;
     }
-
-    /**
-     * creates an avatar in form of  a TextDrawable with the first letter of the account name in a circle with the
-     * given radius.
-     *
-     * @param accountName the account name
-     * @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
-    public static TextDrawable createAvatar(String accountName, float radiusInDp)
-            throws
-            UnsupportedEncodingException,
-            NoSuchAlgorithmException {
-        int[] rgb = BitmapUtils.calculateRGB(accountName);
-        TextDrawable avatar = new TextDrawable(
-                accountName.substring(0, 1).toUpperCase(), rgb[0], rgb[1], rgb[2], radiusInDp);
-        return avatar;
-    }
 }

+ 0 - 6
src/com/owncloud/android/ui/activity/DrawerActivity.java

@@ -94,11 +94,6 @@ public abstract class DrawerActivity extends ToolbarActivity {
      */
     private ImageView mAccountChooserToggle;
 
-    /**
-     * Reference to the current account avatar.
-     */
-    private ImageView mAccountCurrentAccountAvatar;
-
     /**
      * Reference to the middle account avatar.
      */
@@ -148,7 +143,6 @@ public abstract class DrawerActivity extends ToolbarActivity {
             mAccountChooserToggle.setImageResource(R.drawable.ic_down);
             mIsAccountChooserActive = false;
 
-            mAccountCurrentAccountAvatar = (ImageView) findNavigationViewChildById(R.id.drawer_current_account);
             mAccountMiddleAccountAvatar = (ImageView) findNavigationViewChildById(R.id.drawer_account_middle);
             mAccountEndAccountAvatar = (ImageView) findNavigationViewChildById(R.id.drawer_account_end);