【Android】自定义控件

Android自定义控件可以有三种实现方式

  1. 组合原生控件
  2. 自己绘制控件
  3. 继承原生控件

1 组合原生控件

1.1 组合原生控件原理

组合原生控件就是将原生控件组合,然后封装到一个自定义的ViewGroup中,然后将这个ViewGroup作为一个控件使用。

例如自己写一个头部导航控件:

  1. 首先创建一个布局文件header_view.xml,该布局文件中的根布局是一个RelativeLayout,它有三个子布局,一个ImageVeiw和两个TextView。
  2. 创建一个自定义的View,例子里叫HeadView,继承自RelativeLayout
  3. 然后通过LayoutInflater方法加载header_view布局,然后再HeadView里面执行相应控件的操作。

如此就将三个控件封装到了HeadView中,使用头部导航控件时就可以直接调用HeadView就行了。

1.2 源码实现

  • 创建一个头部布局header_view.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#50e7ab"
    android:padding="10dp">

    <ImageView
        android:id="@+id/back"
        android:layout_width="32dp"
        android:layout_height="32dp"
        android:src="@mipmap/back" />

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="首页"
        android:textSize="17sp"
        android:textColor="#ffffff" />

    <TextView
        android:id="@+id/right"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="设置"
        android:textSize="17sp"
        android:textColor="#ffffff"
        android:layout_centerVertical="true"
        android:layout_alignParentRight="true" />
</RelativeLayout>
  • 创建一个HeadView
package com.example.widgetdefine;

import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.TextView;

public class HeadView extends RelativeLayout {
    private ImageView back;
    private TextView title;
    private TextView right;
    public HeadView(Context context) {
        super(context);
    }

    public HeadView(Context context, AttributeSet attrs) {
        super(context, attrs);
        LayoutInflater.from(context).inflate(R.layout.header_view,this);
        back = findViewById(R.id.back);
        title = findViewById(R.id.title);
        right = findViewById(R.id.right);
    }

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

    public void setOnClickBack(OnClickListener listener){
        back.setOnClickListener(listener);
    }
    public void setTitle(String title){
        this.title.setText(title);
    }
    public void setOnClickRight(OnClickListener listener){
        right.setOnClickListener(listener);
    }
    public void setRight(String right){
        this.right.setText(right);
    }
}

  • activity_main.xml布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
>
    <com.example.widgetdefine.HeadView
        android:id="@+id/header_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"></com.example.widgetdefine.HeadView>
</LinearLayout>
  • MainActivity调用
package com.example.widgetdefine;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;

public class MainActivity extends Activity {
    private HeadView headerView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        headerView = findViewById(R.id.header_view);

        headerView.setOnClickBack(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Toast.makeText(MainActivity.this,"点击了返回",Toast.LENGTH_SHORT).show();
            }
        });
        headerView.setTitle("重新设置头部");
        headerView.setRight("设置右侧标题");

    }
}

1.3 运行截图

图1.1 组合原生控件实例运行截图

2 自己绘制控件

2.1 自己绘制控件原理

根据需要,可能需要重写以下三个方法:

  • onMeasure():测量自己的大小,为正式布局提供意见(注意,只是建议,至于用不用,要看onLayout);
  • onLayout():使用layout()函数对所有子控件布局,如果自定义控件继承的是View,它可以不重写onLayout();如果是ViewGroup,则子类必须重写,因为在ViewGroup中,onLayout是个抽象方法
  • onDraw():根据布局位置绘图

关于View的绘制原理,可以参考文章【Android】View绘制流程

在ViewGroup中,onLayout源码如下

    @Override
    protected abstract void onLayout(boolean changed,
            int l, int t, int r, int b);

在View中,onLayout源码如下:

    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
    }

2.2 源码实现

  • 创建一个CustomButtom控件
package com.example.widgetdefine;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Rect;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;
import android.widget.Toast;

public class CustomButton extends View implements View.OnClickListener {
    private Paint mPaint;
    private Rect mRect;
    private Context context;
    private String text;
    public CustomButton(Context context) {
        super(context);
    }

    public CustomButton(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        this.context = context;
        mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
        mRect = new Rect();
        setOnClickListener(this);
    }

    public CustomButton(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        mPaint.setColor(Color.BLUE);
        canvas.drawRect(0,0,getWidth(),getHeight(),mPaint);
        mPaint.setColor(Color.WHITE);
        mPaint.setTextSize(dip2px(context,14));
        mPaint.getTextBounds(getText(),0,getText().length(),mRect);
        float textWidth = mRect.width();
        float textHeight = mRect.height();
        Log.e("测试",getHeight()+";"+getWidth()+";"+textWidth+";"+textHeight);
        canvas.drawText(getText(),getWidth()/2-textWidth/2,getHeight()/2+textHeight/2,mPaint);
    }
    public static int dip2px(Context context, float dipValue) {
        final float scale = context.getResources().getDisplayMetrics().density;
        return (int) (dipValue * scale + 0.5f);
    }
    @Override
    public void onClick(View v) {
        Toast.makeText(context,"测试",Toast.LENGTH_SHORT).show();
    }

    public String getText() {
        return text;
    }

    public void setText(String text) {
        this.text = text;
    }
}

  • activity_main.xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
>
    <com.example.widgetdefine.CustomButton
        android:id="@+id/custom_btn"
        android:layout_width="match_parent"
        android:layout_height="40dp" />
</LinearLayout>
  • MainActivity调用
package com.example.widgetdefine;

import android.app.Activity;
import android.os.Bundle;

public class MainActivity extends Activity {
    CustomButton customButton;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        customButton = findViewById(R.id.custom_btn);
        customButton.setText("按钮");

    }
}

2.3 运行截图

图2.1 绘制控件截图

3 继承原生控件

继承原生控件就是自定义的控件是继承android自带的控件,然后根据自己的需求更改内容,以下是一个自定义文字水平居中的TextView控件。

3.1 源码实现

  • 自定义一个CenterTextView类继承自TextView
package com.example.widgetdefine;

import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.text.Layout;
import android.text.StaticLayout;
import android.text.TextPaint;
import android.util.AttributeSet;
import android.widget.TextView;

@SuppressLint("AppCompatCustomView")
public class CenterTextView extends TextView {
    private StaticLayout mStaticLayout;
    private TextPaint mTextPaint;

    public CenterTextView(Context context) {
        super(context);
    }

    public CenterTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

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

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
        initView();
    }

    private void initView() {
        if (mTextPaint == null) {
            mTextPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG);
        }
        mTextPaint.setTextSize(getTextSize());
        mTextPaint.setColor(getCurrentTextColor());
        mStaticLayout = new StaticLayout(getText(), mTextPaint, getWidth(), Layout.Alignment.ALIGN_CENTER, 1.0f, 0.0f, false);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        mStaticLayout.draw(canvas);
    }

    @Override
    public void setShadowLayer(float radius, float dx, float dy, int color) {
        super.setShadowLayer(radius, dx, dy, color);
        if (mTextPaint == null) {
            mTextPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG);
        }
        mTextPaint.setShadowLayer(radius, dx, dy, color);
    }
}
  • activity_main.xml实现
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
>

    <com.example.widgetdefine.CenterTextView
        android:id="@+id/text_view"
        android:textSize="20sp"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>
  • MainActivity调用
package com.example.widgetdefine;

import android.app.Activity;
import android.os.Bundle;

public class MainActivity extends Activity {
    CenterTextView textView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        textView = findViewById(R.id.text_view);
        textView.setText("测试");
    }
}

3.2 截图

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

推荐阅读更多精彩内容