一個簡單的圓形TextView

一個簡單的工具類绎晃。主要是為了方便當你需要一個帶圓形邊框的textview的時候,可以不用寫一大堆的drawable杂曲。下面是代碼


public class CircleTextView extends AppCompatTextView {
    private Paint circlePaint;
    private Paint backPaint;
    private Paint textPaint;
    private int storkColor = Color.WHITE;
    private int circleBackColor = Color.WHITE;
    private float storkWidth;


    public CircleTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        setGravity(Gravity.CENTER);
        circlePaint = new Paint(Paint.ANTI_ALIAS_FLAG);
        circlePaint.setStyle(Paint.Style.STROKE);
        backPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
        backPaint.setStyle(Paint.Style.FILL);
        textPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
        storkWidth = 0;
        if (attrs != null) {
            TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.CircleTextView);
            storkColor = typedArray.getColor(R.styleable.CircleTextView_storkColor, storkColor);
            circleBackColor = typedArray.getColor(R.styleable.CircleTextView_backColor, circleBackColor);
            storkWidth = typedArray.getDimension(R.styleable.CircleTextView_storkWidth, storkWidth);
            typedArray.recycle();
        }
        if (storkWidth != 0) {
            circlePaint.setStrokeWidth(storkWidth);
            circlePaint.setColor(storkColor);
        }
        backPaint.setColor(circleBackColor);
        textPaint.setColor(getCurrentTextColor());
        textPaint.setTextSize(getTextSize());
    }

    public CircleTextView(Context context) {
        this(context, null);

    }


    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        int height = getHeight();
        int width = getWidth();
        int radius;
        int storkRadius;
        int textWidth = (int) textPaint.measureText(getText().toString());
        if (width > height) {
            if (height > textWidth) {
                radius = height;
            } else {
                setHeight(textWidth + getPaddingTop() + getPaddingBottom());
                radius = textWidth;
            }
        } else {
            if (width > textWidth) {
                radius = width;
            } else {
                setWidth(textWidth + getPaddingRight() + getPaddingLeft());
                radius = textWidth;
            }
        }
        storkRadius= (int) (radius/2-storkWidth);
        radius= storkRadius-1;
        if (storkWidth != 0)
            canvas.drawCircle(getWidth() / 2, getHeight() / 2, storkRadius, circlePaint);
        canvas.drawCircle(getWidth() / 2, getHeight() / 2, radius, backPaint);
        Paint.FontMetrics fontMetrics = textPaint.getFontMetrics();
        canvas.drawText(getText().toString(), getWidth() / 2 - textPaint.measureText(getText().toString()) / 2, getHeight() / 2 - fontMetrics.descent + (fontMetrics.bottom - fontMetrics.top) / 2, textPaint);

    }

    public void setMyStorkColor(@ColorInt int color) {
        this.storkColor = color;
        circlePaint.setColor(storkColor);
        invalidate();
    }

    public void setBackColor(@ColorInt int color) {
        this.circleBackColor = color;
        backPaint.setColor(circleBackColor);
        invalidate();
    }

    public void setMyTextColor(@ColorInt int color) {
        textPaint.setColor(color);
        invalidate();
    }
}

之后是attr屬性

<declare-styleable name="CircleTextView">
        <attr name="storkColor" format="color"/>
        <attr name="backColor" format="color"/>
        <attr name="storkWidth" format="dimension"/>
    </declare-styleable>

思路也很簡單庶艾,主要是先在背景上把邊框的圓畫出來,之后是背景的圓擎勘,最后把文字畫出來咱揍。因為繼承了TextView,感覺不用自己測量了棚饵。下面是一張效果圖

picture.png

需要注意的是煤裙,當寬高是wrap_content時,需要自己設置padding

最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末噪漾,一起剝皮案震驚了整個濱河市硼砰,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌欣硼,老刑警劉巖题翰,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異诈胜,居然都是意外死亡豹障,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門焦匈,熙熙樓的掌柜王于貴愁眉苦臉地迎上來血公,“玉大人,你說我怎么就攤上這事缓熟±勰В” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵够滑,是天一觀的道長垦写。 經(jīng)常有香客問我,道長版述,這世上最難降的妖魔是什么梯澜? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮渴析,結果婚禮上晚伙,老公的妹妹穿的比我還像新娘。我一直安慰自己俭茧,他們只是感情好咆疗,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著母债,像睡著了一般午磁。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上毡们,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天迅皇,我揣著相機與錄音,去河邊找鬼衙熔。 笑死登颓,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的红氯。 我是一名探鬼主播框咙,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼痢甘!你這毒婦竟也來了喇嘱?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤塞栅,失蹤者是張志新(化名)和其女友劉穎者铜,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體放椰,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡王暗,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了庄敛。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片俗壹。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖藻烤,靈堂內(nèi)的尸體忽然破棺而出绷雏,到底是詐尸還是另有隱情,我是刑警寧澤怖亭,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布涎显,位于F島的核電站,受9級特大地震影響兴猩,放射性物質發(fā)生泄漏期吓。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一倾芝、第九天 我趴在偏房一處隱蔽的房頂上張望讨勤。 院中可真熱鬧箭跳,春花似錦、人聲如沸潭千。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽刨晴。三九已至屉来,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間狈癞,已是汗流浹背茄靠。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留蝶桶,地道東北人慨绳。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像莫瞬,于是被迫代替她去往敵國和親儡蔓。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內(nèi)容