Android——自定义组合控件及属性

组合控件是很常见的,没人会愿意一个相同控件组合去copy几十次。。。
很多很多次了,每次想去自定义一个组合控件去使用的时候,都把自己够的一脸懵逼,这次就好好做一个笔记,方便以后的查阅。

  • 第一步、先定义一个要常用的控件组
    (我这个就是一个标题栏的控件组,中间的标题栏,左边含有图片和文字,可以点击,右边同样如此)
<?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="48dp"
    android:background="@color/colorPrimary">

    <LinearLayout
        android:id="@+id/ll_left"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:clickable="true"
        android:orientation="horizontal"
        android:padding="10dp">

        <ImageView
            android:id="@+id/iv_leftDrawer"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@mipmap/ic_launcher_round"
            android:padding="12dp"
            android:scaleType="centerCrop" />

        <TextView
            android:id="@+id/tv_leftText"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginLeft="5dp"
            android:text="返回"
            android:textColor="#ffffff"
            android:textSize="15sp" />
    </LinearLayout>

    <TextView
        android:id="@+id/tv_titleText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="标题"
        android:textColor="#ffffff"
        android:textSize="20sp" />

    <LinearLayout
        android:id="@+id/ll_right"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_alignParentEnd="true"
        android:clickable="true"
        android:orientation="horizontal"
        android:padding="10dp">

        <ImageView
            android:id="@+id/iv_rightDrawer"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@mipmap/ic_launcher_round"
            android:padding="12dp"
            android:scaleType="centerCrop" />

        <TextView
            android:id="@+id/tv_rightText"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginLeft="5dp"
            android:text="管理"
            android:textColor="#ffffff"
            android:textSize="15sp" />
    </LinearLayout>
</RelativeLayout>
  • 第二步、抽象出自己想要的或说不定会改变的一些属性,比如左边的文字和图片是不是必须的,中间的标题是不是可以换标题等等。这些要写在res/values/目录下自建的attrs.xml下:
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="TitleLayout">
        <!--左边返回按键的图片,文字以及显示与否-->
        <attr name="leftDrawer" format="reference" />
        <attr name="leftText" format="string" />
        <attr name="leftIsShow" format="boolean" />
        <!--标题文字与显示与否-->
        <attr name="titleText" format="string" />
        <attr name="titleIsShow" format="boolean" />
        <!--标题栏右边图片文字以及显示与否-->
        <attr name="rightDrawer" format="reference" />
        <attr name="rightText" format="string" />
        <attr name="rightIsShow" format="boolean" />
    </declare-styleable>
</resources>
  • 第三步、继承LinearLayout(原因就是不需要去重写onMesue(),onLayout()和onDraw()方法了)。
package com.example.callphone;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.drawable.Drawable;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;

/**
* Author:蔡小树
* Date:2017/8/8
* Time:13:53
* No bug!No bug!No bug!
*/

public class TitleLayout extends LinearLayout {

    private Drawable leftDrawer;//左边图片
    private String leftText;//左边文字
    private boolean leftIsShow;//左边控件组是否显示
    private String titleText;//中间标题文字
    private boolean titleIsShow;//中间标题是否显示
    private Drawable rightDrawer;//右边图片
    private String rightText;//右边文字
    private boolean rightIsShow;//右边控件组是否显示
    private final LinearLayout llLeft;//左边控件组
    private final ImageView ivLeftDrawer;//左边图片控件
    private final TextView tvLeftText;//左边文字控件
    private final TextView tvTitleText;//中间标题控件
    private final LinearLayout llRight;//右边控件组
    private final ImageView ivRightDrawer;//右边图片控件
    private final TextView tvRightText;//右边文字控件
    public static OnLeftLisenter mOnLeftLisenter;//左边控件组回调接口
    public static OnRightLisenter mOnRightLisenter;//右边控件组回调接口


    /**
     * 构造函数一定要使用这两个参数的,我是用血淋淋的教训得出的教训
     *
     * @param context Context上下文
     * @param attrs   就是我们定义的、抽象出来的属性集合
     */
    public TitleLayout(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
//        获取布局文件
        LayoutInflater.from(context).inflate(R.layout.layout_title, this, true);
//        获取自定义属性的集合
        TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.TitleLayout);
        if (typedArray != null) {
//            图片获取就使用getDrawable()
            leftDrawer = typedArray.getDrawable(R.styleable.TitleLayout_leftDrawer);
            leftText = typedArray.getString(R.styleable.TitleLayout_leftText);
            leftIsShow = typedArray.getBoolean(R.styleable.TitleLayout_leftIsShow, false);

            titleText = typedArray.getString(R.styleable.TitleLayout_titleText);
            titleIsShow = typedArray.getBoolean(R.styleable.TitleLayout_titleIsShow, false);

            rightDrawer = typedArray.getDrawable(R.styleable.TitleLayout_rightDrawer);
            rightText = typedArray.getString(R.styleable.TitleLayout_rightText);
            rightIsShow = typedArray.getBoolean(R.styleable.TitleLayout_rightIsShow, false);
//            记得销毁不必要的消耗
            typedArray.recycle();
        }

//        处理左边控件组合的事务
        llLeft = (LinearLayout) findViewById(R.id.ll_left);
        ivLeftDrawer = (ImageView) findViewById(R.id.iv_leftDrawer);
        tvLeftText = (TextView) findViewById(R.id.tv_leftText);
//        判断是否要显示左边控件组
//        使用Gone的原因就是为了不让控件占地方,不能让不显示的控件占地方把别的控件给挤掉了
        if (leftIsShow) {
            llLeft.setVisibility(VISIBLE);
            if (leftDrawer != null) {
                ivLeftDrawer.setVisibility(VISIBLE);
                ivLeftDrawer.setImageDrawable(leftDrawer);
            } else {
                ivLeftDrawer.setVisibility(GONE);
            }
            if (leftText != null) {
                tvLeftText.setVisibility(VISIBLE);
                tvLeftText.setText(leftText);
            } else {
                tvLeftText.setVisibility(GONE);
            }
        } else {
            llLeft.setVisibility(GONE);
        }
//        左边控件组的点击事件
        llLeft.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View view) {
                mOnLeftLisenter.setOnLeftLisenter();
            }
        });

//        处理中间标题的事务
        tvTitleText = (TextView) findViewById(R.id.tv_titleText);
        if (titleIsShow) {
            tvLeftText.setVisibility(VISIBLE);
            if (titleText != null) {
                tvTitleText.setVisibility(VISIBLE);
                tvTitleText.setText(titleText);
            } else {
                tvTitleText.setVisibility(GONE);
            }
        } else {
            tvTitleText.setVisibility(GONE);
        }

//        处理右边控件组的事务
        llRight = (LinearLayout) findViewById(R.id.ll_right);
        ivRightDrawer = (ImageView) findViewById(R.id.iv_rightDrawer);
        tvRightText = (TextView) findViewById(R.id.tv_rightText);
        if (rightIsShow) {
            llRight.setVisibility(VISIBLE);
            if (rightDrawer != null) {
                ivRightDrawer.setVisibility(VISIBLE);
                ivRightDrawer.setImageDrawable(rightDrawer);
            } else {
                ivRightDrawer.setVisibility(GONE);
            }
            if (rightText != null) {
                tvRightText.setVisibility(VISIBLE);
                tvRightText.setText(rightText);
            } else {
                tvRightText.setVisibility(GONE);
            }
        } else {
            llRight.setVisibility(GONE);
        }
//        右边控件组的点击事件
        llRight.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View view) {
                mOnRightLisenter.setOnRightLisenter();
            }
        });
    }

    /**
     * 定义左边控件组的回调接口
     */
    public interface OnLeftLisenter {
        void setOnLeftLisenter();
    }

    /**
     * 实现回调接口的方法
     *
     * @param onLeftLisenter 回调接口的实例
     */
    public void setOnLeftLisenter(OnLeftLisenter onLeftLisenter) {
        mOnLeftLisenter = onLeftLisenter;
    }

    /**
     * 定义右边控件组的回调接口
     */
    public interface OnRightLisenter {
        void setOnRightLisenter();
    }

    /**
     * 实现回调接口的方法
     *
     * @param onRightLisenter 回调接口的实例
     */
    public void setOnRightLisenter(OnRightLisenter onRightLisenter) {
        mOnRightLisenter = onRightLisenter;
    }

}
  • 第四步、布局文件中的使用
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="[http://schemas.android.com/apk/res/android"](http://schemas.android.com/apk/res/android%22);;
    xmlns:app="[http://schemas.android.com/apk/res-auto"](http://schemas.android.com/apk/res-auto%22);;
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <com.example.callphone.TitleLayout
        android:id="@+id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:leftIsShow="true"
        app:leftText="返回"
        app:rightIsShow="false"
        app:titleIsShow="true"
        app:titleText="打电话" />

</LinearLayout>
  • 第五步、Activity中的实现
//获取控件的实例
TitleLayout titleLayout = (TitleLayout) findViewById(R.id.title);

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

推荐阅读更多精彩内容