Android上自定義角標

Paste_Image.png

大概的原理圖如上镜盯,將綠色部分繪制出來后,再將文本斜著居中繪制到紅色中心點處揩页。
以左圖為例旷偿,設View的寬=高=width=height,為正方形

1.繪制陰影區(qū)

Path p = new Path();
p.moveTo(0, 0);
p.lineTo(width / 2, 0);
p.lineTo(width, height / 2);
p.lineTo(width, height);
p.close();
Paint backGroundPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
backGroundPaint.setColor(Color.RED);
backGroundPaint.setStyle(Paint.Style.FILL);
canvas.drawPath(p, backGroundPaint);

2.計算中心點位置

int x = width/8*3;
int y = x;

3.繪制文字

Paint  textPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
textPaint.setTextAlign(Paint.Align.CENTER);
textPaint.setColor(textColor);
textPaint.setTextSize(textSize);
String textContent="角標";
canvas.drawText(textContent, 5 * width / 8, 3 * width /8 , textPaint);

因為文字居中有個Baseline碍沐,因此在繪制文字的時候要獲取文字的高度狸捅,在Y軸上做偏移處理

Rect mrect = new Rect();
textPaint.getTextBounds(textContent, 0, textContent.length(), mrect);
canvas.drawText(textContent, 3 * width / 8, 3 * width /8 + mrect.height() / 2, textPaint);

4.按照上面的步驟做完后,文字是呈水平居中的累提,因此我們還有做旋轉處理以達到文字是斜著居中在陰影區(qū)的
在繪制文字之前將畫布進行逆時針旋轉45度即可

canvas.rotate(-45, 3 * width / 8, 3 * width / 8);
canvas.drawText(textContent, 3 * width / 8, 3 * width /8 + mrect.height() / 2, textPaint);

貼個代碼尘喝,其中定義了styleable

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="CornerFlagView">
        <!--文本大小-->
        <attr name="cfv_textSize" format="dimension"/>
        <!--文本內容-->
        <attr name="cfv_textContent" format="string"/>
        <!--文本顏色-->
        <attr name="cfv_textColor" format="color"/>
        <!--背景顏色-->
        <attr name="cfv_backgroundColor" format="color"/>
        <!--陰影是否占滿上角-->
        <attr name="cfv_fullCorner" format="boolean"/>
        <!--傾斜放向-->
        <attr name="cfv_orientation" format="enum">
            <!--右角標,向左側傾斜-->
            <enum name="right" value="0"/>
            <!--左角標斋陪,向右側傾斜-->
            <enum name="left" value="1"/>
        </attr>
    </declare-styleable>
</resources>

JAVA代碼

package com.uqi.qiqi.widget;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;
import com.uqi.qiqi.R;
/** * Created by Shuxin on 2016/7/29. */
public class CornerFlagView extends View {
    private Context xContext;
    /**     * View 的寬高     **/
    private int width, height;
    /**     * 需要繪制的文本     */
    private String textContent = "";
    /**     * 文本的字體大小     */
    private float textSize = 22;
    /**     * 背景的顏色     */
    private int backGroundColor = Color.RED;
    /**     * 文本顏色     **/
    private int textColor = Color.WHITE;
    /**     * 是否占滿全角     */
    private boolean isFullCorner = false;
    /**     * 文本方向朽褪,只有向左傾斜和向右傾斜     **/
    private int orientation = 0;
    /**     * 處理文本的畫筆     */
    private Paint textPaint;
    /**     * 處理背景的畫筆     */
    private Paint backGroundPaint;
    /**     *屏幕密度    */ 
    private float scale;
    public void setTextContent(String pTextContent) {
        this.textContent = pTextContent;
        invalidate();
    }
    public void setBackGroundColor(int pBackGroundColor) {
        this.backGroundColor = pBackGroundColor;
        invalidate();
    }
    public void setTextColor(int pTextColor) {
        this.textColor = pTextColor;
        invalidate();
    }
    public void setTextSize(float pTextSize) {
        this.textSize = pTextSize;
        invalidate();
    }
    public CornerFlagView(Context context) {
        super(context);
        this.xContext = context;
        intPaint();
    }
    public CornerFlagView(Context context, AttributeSet attrs) {
        super(context, attrs);
        this.xContext = context;
        initAttr(attrs);
        intPaint();
    }
    public CornerFlagView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        this.xContext = context;
        initAttr(attrs);
        intPaint();
    }
    private void initAttr(AttributeSet attrs) {
        TypedArray ta = xContext.obtainStyledAttributes(attrs, R.styleable.CornerFlagView);
        textSize = ta.getDimension(R.styleable.CornerFlagView_cfv_textSize, 22);
        textContent = ta.getString(R.styleable.CornerFlagView_cfv_textContent);
        textColor = ta.getColor(R.styleable.CornerFlagView_cfv_textColor, Color.BLACK);
        backGroundColor = ta.getColor(R.styleable.CornerFlagView_cfv_backgroundColor, Color.RED);
        isFullCorner = ta.getBoolean(R.styleable.CornerFlagView_cfv_fullCorner, false);
        orientation = ta.getInt(R.styleable.CornerFlagView_cfv_orientation, 0);
        ta.recycle();
    }
    private void intPaint() {
        scale=xContext.getResources().getDisplayMetrics().density;
        backGroundPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
        backGroundPaint.setColor(backGroundColor);
        backGroundPaint.setStyle(Paint.Style.FILL);

        textPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
        textPaint.setTextAlign(Paint.Align.CENTER);
        textPaint.setColor(textColor);
        textPaint.setTextSize(textSize);
    }
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
      super.onMeasure(widthMeasureSpec, heightMeasureSpec);
      Paint pTextPaint = new Paint();
      pTextPaint.setTextAlign(Paint.Align.CENTER);
      pTextPaint.setTextSize(textSize);
      Rect mrect = new Rect();
      pTextPaint.getTextBounds(textContent, 0, textContent.length(), mrect);
      int specmode = MeasureSpec.getMode(widthMeasureSpec);
      if(specmode == MeasureSpec.AT_MOST){
          int padding =  (int)(8*scale+0.5f);
          int contentWidth = mrect.width()+ padding;
          int contentHeight = mrect.height() + padding;
          int width = (int)Math.sqrt(contentWidth*contentWidth+contentHeight*contentHeight);
          setMeasuredDimension(width,width);
      }else {
          setMeasuredDimension(widthMeasureSpec,widthMeasureSpec);
      }
    }
    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        backGroundPaint.setColor(backGroundColor);
        textPaint.setColor(textColor);
        textPaint.setTextSize(textSize);
        if (textContent == null) textContent = "";
        Path p = new Path();
        if (orientation == 0) {
            p.moveTo(0, 0);
            if (!isFullCorner) {
                p.lineTo(width / 2, 0);
                p.lineTo(width, height / 2);
            } else {
                p.lineTo(width, 0);
            }
            p.lineTo(width, height);
            p.close();
        } else {
            p.moveTo(width, 0);
            if (!isFullCorner) {
                p.lineTo(width / 2, 0);
                p.lineTo(0, height / 2);
            } else {
                p.lineTo(0, 0);
            }
            p.lineTo(0, height);
            p.close();
        }
        canvas.drawPath(p, backGroundPaint);
        Rect mrect = new Rect();
        textPaint.getTextBounds(textContent, 0, textContent.length(), mrect);
        if (orientation == 0) {
            canvas.rotate(45, 5 * width / 8, 3 * width / 8);
            canvas.drawText(textContent, 5 * width / 8, 3 * width /8 + mrect.height() / 2, textPaint);
        } else {
            canvas.rotate(-45, 3 * width / 8, 3 * width / 8);
            canvas.drawText(textContent, 3 * width / 8, 3 * width /8 + mrect.height() / 2, textPaint);
        }
    }
    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
        this.width = w;
        this.height = w;
    }
}

布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:orientation="vertical"
    tools:context="com.uqi.qiqi.MainActivity">
    <com.uqi.qiqi.widget.CornerFlagView
        android:layout_width="100dp"
        android:layout_height="100dp"
        app:cfv_backgroundColor="#cf0"
        app:cfv_orientation="right"
        app:cfv_textContent="未領取"
        app:cfv_textColor="#fff"
        app:cfv_fullCorner="false"
        app:cfv_textSize="16sp" 
       />
    <com.uqi.qiqi.widget.CornerFlagView
        android:layout_width="100dp"
        android:layout_height="100dp"
        app:cfv_backgroundColor="#abc"
        app:cfv_orientation="left"
        app:cfv_textContent="已領取"
        app:cfv_textColor="#000"
        app:cfv_fullCorner="false"
        app:cfv_textSize="16sp"
        />
    <com.uqi.qiqi.widget.CornerFlagView
        android:layout_width="100dp"
        android:layout_height="100dp"
        app:cfv_backgroundColor="#1af"
        app:cfv_orientation="right"
        app:cfv_textContent="未領取"
        app:cfv_textColor="#dca"
        app:cfv_fullCorner="true"
        app:cfv_textSize="17sp"
        />
    <com.uqi.qiqi.widget.CornerFlagView
        android:layout_width="100dp"
        android:layout_height="100dp"
        app:cfv_backgroundColor="#34a"
        app:cfv_orientation="left"
        app:cfv_textContent="已領取"
        app:cfv_textColor="#cda"
        app:cfv_fullCorner="true"
        app:cfv_textSize="18sp"
        />
</LinearLayout>
Paste_Image.png
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市无虚,隨后出現的幾起案子缔赠,更是在濱河造成了極大的恐慌,老刑警劉巖友题,帶你破解...
    沈念sama閱讀 211,376評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件嗤堰,死亡現場離奇詭異,居然都是意外死亡度宦,警方通過查閱死者的電腦和手機踢匣,發(fā)現死者居然都...
    沈念sama閱讀 90,126評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來戈抄,“玉大人离唬,你說我怎么就攤上這事』耄” “怎么了输莺?”我有些...
    開封第一講書人閱讀 156,966評論 0 347
  • 文/不壞的土叔 我叫張陵戚哎,是天一觀的道長。 經常有香客問我嫂用,道長型凳,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,432評論 1 283
  • 正文 為了忘掉前任嘱函,我火速辦了婚禮啰脚,結果婚禮上,老公的妹妹穿的比我還像新娘实夹。我一直安慰自己橄浓,他們只是感情好,可當我...
    茶點故事閱讀 65,519評論 6 385
  • 文/花漫 我一把揭開白布亮航。 她就那樣靜靜地躺著荸实,像睡著了一般。 火紅的嫁衣襯著肌膚如雪缴淋。 梳的紋絲不亂的頭發(fā)上准给,一...
    開封第一講書人閱讀 49,792評論 1 290
  • 那天,我揣著相機與錄音重抖,去河邊找鬼露氮。 笑死,一個胖子當著我的面吹牛钟沛,可吹牛的內容都是我干的畔规。 我是一名探鬼主播,決...
    沈念sama閱讀 38,933評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼恨统,長吁一口氣:“原來是場噩夢啊……” “哼叁扫!你這毒婦竟也來了?” 一聲冷哼從身側響起畜埋,我...
    開封第一講書人閱讀 37,701評論 0 266
  • 序言:老撾萬榮一對情侶失蹤莫绣,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后悠鞍,有當地人在樹林里發(fā)現了一具尸體对室,經...
    沈念sama閱讀 44,143評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,488評論 2 327
  • 正文 我和宋清朗相戀三年咖祭,在試婚紗的時候發(fā)現自己被綠了掩宜。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,626評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡心肪,死狀恐怖锭亏,靈堂內的尸體忽然破棺而出纠吴,到底是詐尸還是另有隱情硬鞍,我是刑警寧澤,帶...
    沈念sama閱讀 34,292評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站固该,受9級特大地震影響锅减,放射性物質發(fā)生泄漏。R本人自食惡果不足惜伐坏,卻給世界環(huán)境...
    茶點故事閱讀 39,896評論 3 313
  • 文/蒙蒙 一怔匣、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧桦沉,春花似錦每瞒、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,742評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至埠褪,卻和暖如春浓利,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背钞速。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工贷掖, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人渴语。 一個月前我還...
    沈念sama閱讀 46,324評論 2 360
  • 正文 我出身青樓苹威,卻偏偏與公主長得像,于是被迫代替她去往敵國和親驾凶。 傳聞我的和親對象是個殘疾皇子屠升,可洞房花燭夜當晚...
    茶點故事閱讀 43,494評論 2 348

推薦閱讀更多精彩內容