From a46922bfde51ad309421b437eba1efe0ab7c904c Mon Sep 17 00:00:00 2001 From: Konrad Pozniak Date: Tue, 16 Jul 2019 19:26:41 +0200 Subject: [PATCH] make avatar images in drawer rounded squares (#1388) --- .../tusky/view/BezelImageView.java | 63 ++++++++ .../drawable/materialdrawer_shape_large.xml | 5 + .../drawable/materialdrawer_shape_small.xml | 5 + .../res/layout/material_drawer_header.xml | 134 ++++++++++++++++++ app/src/main/res/values/styles.xml | 6 + 5 files changed, 213 insertions(+) create mode 100644 app/src/main/java/com/keylesspalace/tusky/view/BezelImageView.java create mode 100644 app/src/main/res/drawable/materialdrawer_shape_large.xml create mode 100644 app/src/main/res/drawable/materialdrawer_shape_small.xml create mode 100644 app/src/main/res/layout/material_drawer_header.xml diff --git a/app/src/main/java/com/keylesspalace/tusky/view/BezelImageView.java b/app/src/main/java/com/keylesspalace/tusky/view/BezelImageView.java new file mode 100644 index 000000000..af1ac1ccd --- /dev/null +++ b/app/src/main/java/com/keylesspalace/tusky/view/BezelImageView.java @@ -0,0 +1,63 @@ +/* Copyright 2019 Tusky contributors + * + * This file is a part of Tusky. + * + * This program is free software; you can redistribute it and/or modify it under the terms of the + * GNU General Public License as published by the Free Software Foundation; either version 3 of the + * License, or (at your option) any later version. + * + * Tusky 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 Tusky; if not, + * see . */ + +package com.keylesspalace.tusky.view; + +import android.content.Context; +import android.graphics.Outline; +import android.util.AttributeSet; +import android.view.View; +import android.view.ViewOutlineProvider; + + +/** + * override BezelImageView from MaterialDrawer library to provide custom outline + */ + +public class BezelImageView extends com.mikepenz.materialdrawer.view.BezelImageView { + public BezelImageView(Context context) { + this(context, null); + } + + public BezelImageView(Context context, AttributeSet attrs) { + this(context, attrs, 0); + } + + public BezelImageView(Context context, AttributeSet attrs, int defStyle) { + super(context, attrs, defStyle); + } + + + @Override + protected void onSizeChanged(int w, int h, int old_w, int old_h) { + setOutlineProvider(new CustomOutline(w, h)); + } + + private static class CustomOutline extends ViewOutlineProvider { + + int width; + int height; + + CustomOutline(int width, int height) { + this.width = width; + this.height = height; + } + + @Override + public void getOutline(View view, Outline outline) { + outline.setRoundRect(0, 0, width, height, width < height ? width / 8f : height / 8f); + } + } +} diff --git a/app/src/main/res/drawable/materialdrawer_shape_large.xml b/app/src/main/res/drawable/materialdrawer_shape_large.xml new file mode 100644 index 000000000..ba626b68e --- /dev/null +++ b/app/src/main/res/drawable/materialdrawer_shape_large.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/materialdrawer_shape_small.xml b/app/src/main/res/drawable/materialdrawer_shape_small.xml new file mode 100644 index 000000000..7bdd42912 --- /dev/null +++ b/app/src/main/res/drawable/materialdrawer_shape_small.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/material_drawer_header.xml b/app/src/main/res/layout/material_drawer_header.xml new file mode 100644 index 000000000..070409ffd --- /dev/null +++ b/app/src/main/res/layout/material_drawer_header.xml @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index 174b2a4b6..22353321f 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -206,4 +206,10 @@ +