简单的自定义控件

Ui图

说明

当拿到这张UI的时候就有写个自定义控件的冲动,其中六边形稍加复制,经过分析得知可以自定义一个控制,只用给背景图、图标、和文字就可以,让后加入点击事件和带圆点的控件就可以了。

正文

可以说重载onMeasure(),onLayout(),onDraw()三个函数构建了自定义View的外观形象。再加上onTouchEvent()等重载视图的行为,可以构建任何我们需要的可感知到的自定义View。

代码很简单

public class Hexagon extends ImageView {
    String text = "未付款";
    private Bitmap mAreaBitmap, logobitmap;
    private Paint paint;
    private Paint painttext;
    int textColor;
    float textSize;
    private Paint paintlogo;
    private Paint paintcircle;
    private int number = 10;
    private Paint txtPaint;

    public Hexagon(Context context) {
        this(context, null);
    }

    public Hexagon(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public Hexagon(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);

        TypedArray mArray = context.obtainStyledAttributes(attrs, R.styleable.Hexagonattrs);
        Drawable areaBackground = mArray.getDrawable(R.styleable.Hexagonattrs_HexagonBackground);

        if (null != areaBackground) {
            // 设置了背景
            if (areaBackground instanceof BitmapDrawable) {
                // 设置了一张图片
                mAreaBitmap = ((BitmapDrawable) areaBackground).getBitmap();
            }
        }

        Drawable logoBackground = mArray.getDrawable(R.styleable.Hexagonattrs_logoBackground);
        if (null != logoBackground) {
            // 设置了背景
            if (logoBackground instanceof BitmapDrawable) {
                // 设置了一张图片
                logobitmap = ((BitmapDrawable) logoBackground).getBitmap();
            }
        }
        text = mArray.getString(R.styleable.Hexagonattrs_title);
        textColor = mArray.getColor(R.styleable.Hexagonattrs_titleColor, Color.parseColor("#FFFFFF"));
        textSize = mArray.getDimension(R.styleable.Hexagonattrs_titleSize, 90f);
        init();
    }

    private void init() {
        painttext = new Paint();
        painttext.setColor(textColor);
        painttext.setTextSize(textSize);


        paintcircle = new Paint();
        paintcircle.setAntiAlias(true);
        paintcircle.setColor(Color.RED);


        txtPaint = new Paint();
        txtPaint.setAntiAlias(true);
        txtPaint.setColor(Color.WHITE);
        txtPaint.setTextSize(30);
        //  txtPaint.setStyle(Paint.Style.STROKE); //设置画笔为空心
        // txtPaint.setStrokeWidth(1); //设置线宽

    }


    @Override
    public void draw(Canvas canvas) {
        super.draw(canvas);


        //绘制背景
        if (mAreaBitmap != null) {
            Rect rect1 = new Rect(0, 0, mAreaBitmap.getWidth(), mAreaBitmap.getHeight());
            Rect rect2 = new Rect(0, 0, getWidth(), getHeight());
            canvas.drawBitmap(mAreaBitmap, rect1, rect2, null);
        }

        //绘制logo
        if (logobitmap != null) {
            Rect rect1 = new Rect(0, 0, logobitmap.getWidth(), logobitmap.getHeight());
            Rect rect2 = new Rect(getWidth() / 3, getHeight() / 10 * 3, getWidth() / 3 * 2, getHeight() / 10 * 6);
            canvas.drawBitmap(logobitmap, rect1, rect2, null);
        }


        //拿到字符串的宽度  X轴居中
        float stringWidth = painttext.measureText(text);
        float x = (getWidth() - stringWidth) / 2;
        canvas.drawText(text, x, getHeight() / 10 * 7, painttext);


        //绘制小圆点
        canvas.drawCircle(getWidth() / 10 * 7, getHeight() / 10 * 3, 30, paintcircle);



        //绘制小圆点中的文字
        if (number != 0) {
            canvas.drawText(number + "",
                    getWidth() / 10 * 7 - txtPaint.measureText(number + "") / 2,
                    getHeight() / 10 * 3 + (txtPaint.descent() - txtPaint.ascent()) / 2 - txtPaint.descent(),
                    txtPaint);
        }


    }

    //设置圆点中的数字
    public void setNumber(int number) {
        if (number > 99) {
            this.number = 99;
        } else {
            this.number = number;
        }
        invalidate();
    }
}

Xml引用

 <com.ac.myapplication.Hexagon
        android:layout_below="@+id/rl"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="10dp"
        android:id="@+id/hex"
        android:layout_width="100dp"
        android:layout_height="100dp"
        app:HexagonBackground="@mipmap/six"
        app:logoBackground="@mipmap/ff"
        app:title="未付款"
        app:titleColor="#fff"
        app:titleSize="10sp" />

attrs(通过自定义属性 将图片资源和文字大小通过XML设置将参数传进自定义六边形中)

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="Hexagonattrs">
        <attr name="HexagonBackground" format="reference" />
        <attr name="logoBackground" format="reference" />
        <attr name="title" format="string"/>
        <attr name="titleColor" format="color" />
        <attr name="titleSize" format="dimension" />
    </declare-styleable>
</resources>

单个六边形的效果图

效果图

在MainActivity中的用法

public class MainActivity extends AppCompatActivity {
    private int nume = 10;
    private Hexagon hexagon;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        hexagon = (Hexagon) findViewById(R.id.hex);

      //点击事件
        hexagon.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {、
                  //设置数据
                hexagon.setNumber(++nume);
                Toast.makeText(MainActivity.this, "点击了1", Toast.LENGTH_SHORT).show();
            }
        });
    }

    //自动隐藏虚拟按键和状态栏
    @Override
    protected void onResume() {
        super.onResume();
        View view = getWindow().getDecorView();
        //自动隐藏虚拟按键和状态栏
        view.setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
                View.SYSTEM_UI_FLAG_FULLSCREEN |   View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
    }
}

设置横屏

 <activity android:name=".MainActivity"
            android:screenOrientation="landscape">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

通过XML布局就会出现整体效果

效果图

Mainactivity的XML代码

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#fff"
    tools:context="com.ac.myapplication.MainActivity">
    <RelativeLayout
        android:id="@+id/rl"
        android:layout_width="match_parent"
        android:layout_height="150dp"
        android:background="#cb2f49">
        <android.support.v7.widget.Toolbar
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#cb2f49">
            <ImageView
                android:id="@+id/civ_header"
                android:layout_width="40dp"
                android:layout_height="40dp"
                android:src="@mipmap/blak"
                android:transitionName="sheredheader" />
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="返回"
                android:textColor="#fff"
                android:textSize="20sp" />
            <TextView
                android:id="@+id/tv_title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_horizontal"
                android:background="@null"
                android:text="本地管理"
                android:textColor="#fff"
                android:textSize="20sp" />
        </android.support.v7.widget.Toolbar>
        <RelativeLayout
            android:layout_width="140dp"
            android:layout_height="130dp"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true">
            <com.ac.myapplication.ImageViewCircle
                android:id="@+id/im"
                android:layout_width="50dp"
                android:layout_height="50dp"
                android:layout_centerVertical="true"
                android:src="@mipmap/ss" />
            <TextView
                android:id="@+id/tx"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="20dp"
                android:layout_marginTop="38dp"
                android:layout_toRightOf="@+id/im"
                android:text="张豪"
                android:textColor="#fff"
                android:textSize="20sp" />
            <TextView
                android:id="@+id/tx1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/tx"
                android:layout_marginLeft="20dp"
                android:layout_toRightOf="@+id/im"
                android:text="Musrt"
                android:textColor="#fff"
                android:textSize="10sp" />
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/tx1"
                android:layout_marginLeft="20dp"
                android:layout_toRightOf="@+id/im"
                android:text="1865656858"
                android:textColor="#fff"
                android:textSize="10sp" />
        </RelativeLayout>
    </RelativeLayout>
    <com.ac.myapplication.Hexagon
        android:id="@+id/hex"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_below="@+id/rl"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="10dp"
        app:HexagonBackground="@mipmap/six"
        app:logoBackground="@mipmap/ff"
        app:title="未付款"
        app:titleColor="#fff"
        app:titleSize="10sp" />
    <com.ac.myapplication.Hexagon
        android:id="@+id/hex1"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_below="@+id/rl"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="10dp"
        android:layout_toLeftOf="@+id/hex"
        app:HexagonBackground="@mipmap/six"
        app:logoBackground="@mipmap/ff"
        app:title="未付款"
        app:titleColor="#fff"
        app:titleSize="10sp" />
    <com.ac.myapplication.Hexagon
        android:id="@+id/hex2"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_below="@+id/rl"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="10dp"
        android:layout_toRightOf="@+id/hex"
        app:HexagonBackground="@mipmap/six"
        app:logoBackground="@mipmap/ff"
        app:title="未付款"
        app:titleColor="#fff"
        app:titleSize="10sp" />
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/rl"
        android:layout_marginTop="55dp">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:orientation="horizontal">
            <com.ac.myapplication.Hexagon
                android:layout_width="100dp"
                android:layout_height="100dp"
                android:layout_centerHorizontal="true"
                android:layout_marginTop="10dp"
                app:HexagonBackground="@mipmap/six"
                app:logoBackground="@mipmap/ff"
                app:title="未付款"
                app:titleColor="#fff"
                app:titleSize="10sp" />
            <com.ac.myapplication.Hexagon
                android:layout_width="100dp"
                android:layout_height="100dp"
                android:layout_centerHorizontal="true"
                android:layout_marginTop="10dp"
                app:HexagonBackground="@mipmap/six"
                app:logoBackground="@mipmap/ff"
                app:title="未付款"
                app:titleColor="#fff"
                app:titleSize="10sp" />
        </LinearLayout>
    </RelativeLayout>
</RelativeLayout>

最后附上几张资源文件的图片

ss.jpg
six.png
ff
blak.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容

  • 我们所用的所有控件都是直接或间接继承自View的,所用的所有布局都是直接或间接继承自ViewGroup的.View...
    随心者随心行阅读 291评论 0 0
  • 本文出自 “阿敏其人” 简书博客,转载或引用请注明出处。 开发的时候,因为业务需求或者封装需要,我们会进行自定义控...
    阿敏其人阅读 6,516评论 2 48
  • 目标: 1、掌握自定义view的流程2、掌握自定义view的三个方法3、掌握自定义view实现方式4、掌握自定义v...
    Anwfly阅读 1,729评论 2 7
  • 目标: 1、掌握自定义view的流程2、掌握自定义view的三个方法3、掌握自定义view实现方式4、掌握自定义v...
    烟刺痛了眼_a1b7阅读 371评论 0 0
  • 目标: 1、掌握自定义view的流程2、掌握自定义view的三个方法3、掌握自定义view实现方式4、掌握自定义v...
    小慧sir阅读 119评论 0 0